toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientId = this.clientId;
  final clientSecret = this.clientSecret;
  final oauthGrantType = this.oauthGrantType;
  final scopes = this.scopes;
  final secretVersionForClientSecret = this.secretVersionForClientSecret;
  final tokenEndpoint = this.tokenEndpoint;
  return {
    'clientId': ?clientId,
    'clientSecret': ?clientSecret,
    'oauthGrantType': ?oauthGrantType,
    'scopes': ?scopes,
    'secretVersionForClientSecret': ?secretVersionForClientSecret,
    'tokenEndpoint': ?tokenEndpoint,
  };
}