toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accessToken = this.accessToken;
  final applyReauthPolicy = this.applyReauthPolicy;
  final authCode = this.authCode;
  final authEndpoint = this.authEndpoint;
  final authParams = this.authParams;
  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,
    'applyReauthPolicy': ?applyReauthPolicy,
    'authCode': ?authCode,
    'authEndpoint': ?authEndpoint,
    'authParams': ?authParams,
    'clientId': ?clientId,
    'clientSecret': ?clientSecret,
    'requestType': ?requestType,
    'scope': ?scope,
    'tokenEndpoint': ?tokenEndpoint,
    'tokenParams': ?tokenParams,
  };
}