setCustomUrl static method

void setCustomUrl(
  1. int svc,
  2. String url
)

Get default URLs for the specified service.

Parameters:

  • IN svc Service identifier for which the URL is to be set.
  • IN url The URL to set for the service.

Throws

  • An exception if it fails.

Implementation

static void setCustomUrl(int svc, String url) {
  staticMethod(
    'Debug',
    'setCustomUrl',
    args: <String, Object>{'first': svc, 'second': url},
  );
}