toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (database != null) 'database': database!,
  if (hostname != null) 'hostname': hostname!,
  if (password != null) 'password': password!,
  if (port != null) 'port': port!,
  if (secretManagerStoredPassword != null)
    'secretManagerStoredPassword': secretManagerStoredPassword!,
  if (sslConfig != null) 'sslConfig': sslConfig!,
  if (username != null) 'username': username!,
};