toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientId = this.clientId;
  final clientSecret = this.clientSecret;
  final issuerUri = this.issuerUri;
  final jwksJson = this.jwksJson;
  final webSsoConfig = this.webSsoConfig;
  return {
    'clientId': ?clientId,
    'clientSecret': ?clientSecret,
    'issuerUri': ?issuerUri,
    'jwksJson': ?jwksJson,
    'webSsoConfig': ?webSsoConfig,
  };
}