toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (ipAddress != null) 'ipAddress': ipAddress!,
  if (ipProtocol != null) 'ipProtocol': ipProtocol!,
  if (loadBalancerType != null) 'loadBalancerType': loadBalancerType!,
  if (networkUrl != null) 'networkUrl': networkUrl!,
  if (port != null) 'port': port!,
  if (project != null) 'project': project!,
  if (region != null) 'region': region!,
};