getServerUrl method

Future<String> getServerUrl ()

Returns the URL of the Mobile Foundation server.

This is a non blocking call and can be awaited

Implementation

Future<String> getServerUrl() async {
  final String serverUrl = await _channel.invokeMethod(WLCLIENT_GETSERVERURL);
  return serverUrl;
}