setServerEndpoint static method

Future<void> setServerEndpoint(
  1. String endpoint
)

Override the server endpoint address for using with on-premise installations and private cloud configuration.

Please contact support for more information about these products.

Implementation

static Future<void> setServerEndpoint(String endpoint) async {
  TestFairyBase.prepareTwoWayInvoke();
  await TestFairyBase.channel
      .invokeMethod<void>('setServerEndpoint', endpoint);
}