reMintOnOpen method
Silently re-mints the access token on app open, keeping the refresh token.
Implementation
@override
Future<SessionTokens> reMintOnOpen(SessionTokens current) async {
reMintCount += 1;
return (_onReMint ?? (SessionTokens c) => throw StateError('no reMint'))(
current,
);
}