setLoginTimeOut method
Sets the timeout for the authorization flow. The default value is 10 seconds.
This is a non blocking call and can be await
ed
Implementation
Future<void> setLoginTimeOut({@required int loginTimeout}) async {
return await _channel.invokeMethod(WLAUTHORIZATIONMANAGER_SETLOGINTIMEOUT,
<String, dynamic>{TIMEOUT: loginTimeout});
}