toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (displayName != null) 'displayName': displayName!,
  if (externalIp != null) 'externalIp': externalIp!,
  if (internalIp != null) 'internalIp': internalIp!,
  if (networkUri != null) 'networkUri': networkUri!,
  if (region != null) 'region': region!,
  if (uri != null) 'uri': uri!,
};