renewToken method

  1. @override
Future<void> renewToken(
  1. String token
)

Renews the token when the current token expires.

In the following situations, the SDK decides that the current token has expired:

Implementation

@override
Future<void> renewToken(String token) {
  return _invokeMethod('renewToken', {'token': token});
}