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 oauth2ClientCredentialsConfig = this.oauth2ClientCredentialsConfig;
  final userPasswordConfig = this.userPasswordConfig;
  return {
    'apiKeyConfig': ?apiKeyConfig,
    'authType': ?authType,
    'googleServiceAccountConfig': ?googleServiceAccountConfig,
    'oauth2ClientCredentialsConfig': ?oauth2ClientCredentialsConfig,
    'userPasswordConfig': ?userPasswordConfig,
  };
}