toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (adminEnabled != null) 'adminEnabled': adminEnabled!,
  if (customerName != null) 'customerName': customerName!,
  if (description != null) 'description': description!,
  if (facility != null) 'facility': facility!,
  if (interconnectType != null) 'interconnectType': interconnectType!,
  if (linkType != null) 'linkType': linkType!,
  if (name != null) 'name': name!,
  if (nocContactEmail != null) 'nocContactEmail': nocContactEmail!,
  if (remoteLocation != null) 'remoteLocation': remoteLocation!,
  if (requestedFeatures != null) 'requestedFeatures': requestedFeatures!,
  if (requestedLinkCount != null) 'requestedLinkCount': requestedLinkCount!,
};