toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final additionalVariables = this.additionalVariables;
  final authKey = this.authKey;
  final authType = this.authType;
  final oauth2AuthCodeFlow = this.oauth2AuthCodeFlow;
  final oauth2AuthCodeFlowGoogleManaged =
      this.oauth2AuthCodeFlowGoogleManaged;
  final oauth2ClientCredentials = this.oauth2ClientCredentials;
  final oauth2JwtBearer = this.oauth2JwtBearer;
  final sshPublicKey = this.sshPublicKey;
  final userPassword = this.userPassword;
  return {
    'additionalVariables': ?additionalVariables,
    'authKey': ?authKey,
    'authType': ?authType,
    'oauth2AuthCodeFlow': ?oauth2AuthCodeFlow,
    'oauth2AuthCodeFlowGoogleManaged': ?oauth2AuthCodeFlowGoogleManaged,
    'oauth2ClientCredentials': ?oauth2ClientCredentials,
    'oauth2JwtBearer': ?oauth2JwtBearer,
    'sshPublicKey': ?sshPublicKey,
    'userPassword': ?userPassword,
  };
}