getServerUrl method
Returns the URL of the Mobile Foundation server.
This is a non blocking call and can be await
ed
Implementation
Future<String> getServerUrl() async {
final String serverUrl = await _channel.invokeMethod(WLCLIENT_GETSERVERURL);
return serverUrl;
}