idTokenRaw property

String? idTokenRaw

The raw string value of the ID token bound to the access token. It is a Base64 URL encoded string which follows specification of JSON Web Token (JWT). If you need to access a field value in the ID Token, use the idToken getter.

The value exists only if the access token is obtained with the openID permission. Otherwise, null is returned.

Implementation

String? get idTokenRaw => _data['id_token'];