toJson method

Map<String, dynamic> toJson()

Implementation

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