toJson method
Convert the object to a json Map.
Implementation
Map<String, dynamic> toJson() => <String, dynamic>{
_Constants._kAccessToken: accessToken,
_Constants._kRefreshToken: refreshToken,
_Constants._kScopes: scopes,
_Constants._kTokenType: tokenType,
_Constants._kIdToken: idToken,
};