setCustomUrl static method

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

Get default URLs for the specified service.

Can be used to override default service URLs. Useful for testing and using custom data.

Do not unless instructed by Magic Lane support.

Parameters

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

Implementation

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