toJson method

Map<String, dynamic> toJson()

Implementation

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