toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessToken = this.accessToken;
final clientId = this.clientId;
final clientSecret = this.clientSecret;
final requestType = this.requestType;
final scope = this.scope;
final tokenEndpoint = this.tokenEndpoint;
final tokenParams = this.tokenParams;
return {
'accessToken': ?accessToken,
'clientId': ?clientId,
'clientSecret': ?clientSecret,
'requestType': ?requestType,
'scope': ?scope,
'tokenEndpoint': ?tokenEndpoint,
'tokenParams': ?tokenParams,
};
}