toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final exchangeError = this.exchangeError;
final expirationTime = this.expirationTime;
final scopes = this.scopes;
final token = this.token;
return {
'exchangeError': ?exchangeError,
'expirationTime': ?expirationTime,
'scopes': ?scopes,
'token': ?token,
};
}