toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authUri = this.authUri;
  final clientId = this.clientId;
  final codeChallenge = this.codeChallenge;
  final codeChallengeMethod = this.codeChallengeMethod;
  final scopes = this.scopes;
  final systemProviderId = this.systemProviderId;
  final ticket = this.ticket;
  return {
    'authUri': ?authUri,
    'clientId': ?clientId,
    'codeChallenge': ?codeChallenge,
    'codeChallengeMethod': ?codeChallengeMethod,
    'scopes': ?scopes,
    'systemProviderId': ?systemProviderId,
    'ticket': ?ticket,
  };
}