toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final apiKeyConfig = this.apiKeyConfig;
  final authType = this.authType;
  final googleServiceAccountConfig = this.googleServiceAccountConfig;
  final httpBasicAuthConfig = this.httpBasicAuthConfig;
  final oauthConfig = this.oauthConfig;
  final oidcConfig = this.oidcConfig;
  return {
    'apiKeyConfig': ?apiKeyConfig,
    'authType': ?authType,
    'googleServiceAccountConfig': ?googleServiceAccountConfig,
    'httpBasicAuthConfig': ?httpBasicAuthConfig,
    'oauthConfig': ?oauthConfig,
    'oidcConfig': ?oidcConfig,
  };
}