toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final connectionAttributes = this.connectionAttributes;
  final databaseService = this.databaseService;
  final hostname = this.hostname;
  final oracleAsmConfig = this.oracleAsmConfig;
  final oracleSslConfig = this.oracleSslConfig;
  final password = this.password;
  final port = this.port;
  final secretManagerStoredPassword = this.secretManagerStoredPassword;
  final username = this.username;
  return {
    'connectionAttributes': ?connectionAttributes,
    'databaseService': ?databaseService,
    'hostname': ?hostname,
    'oracleAsmConfig': ?oracleAsmConfig,
    'oracleSslConfig': ?oracleSslConfig,
    'password': ?password,
    'port': ?port,
    'secretManagerStoredPassword': ?secretManagerStoredPassword,
    'username': ?username,
  };
}