setLoginTimeOut method

Future<void> setLoginTimeOut (
  1. {@required int loginTimeout}
)

Sets the timeout for the authorization flow. The default value is 10 seconds.

This is a non blocking call and can be awaited

Implementation

Future<void> setLoginTimeOut({@required int loginTimeout}) async {
  return await _channel.invokeMethod(WLAUTHORIZATIONMANAGER_SETLOGINTIMEOUT,
      <String, dynamic>{TIMEOUT: loginTimeout});
}