idToken property

String? idToken

Saves the JSON Web Token (JWT) that contains digitally signed identity information about the user.

Implementation

String? get idToken => _store.get(_getKey(_kIdTokenKey));
void idToken=(String? value)

Implementation

set idToken(String? value) => _setValue(_kIdTokenKey, value);