setAuthorizationServerUrl method

void setAuthorizationServerUrl (
  1. {@required String url}
)

Sets the authorization server url

Implementation

void setAuthorizationServerUrl({@required String url}) async {
  await _channel.invokeMethod(
      WLAUTHORIZATIONMANAGER_SETAUTHORIZATIONSERVERURL,
      <String, dynamic>{URL: url});
}