toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessToken = this.accessToken;
final expiresIn = this.expiresIn;
final scope = this.scope;
final tokenType = this.tokenType;
return {
'access_token': ?accessToken,
'expires_in': ?expiresIn,
'scope': ?scope,
'token_type': ?tokenType,
};
}