toJson method

Map<String, dynamic> toJson()

Implementation

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