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 (interface != null) 'interface': interface!,
      if (internalIp != null) 'internalIp': internalIp!,
      if (networkTags != null) 'networkTags': networkTags!,
      if (networkUri != null) 'networkUri': networkUri!,
      if (serviceAccount != null) 'serviceAccount': serviceAccount!,
      if (uri != null) 'uri': uri!,
    };