toJson method

Map<String, dynamic> toJson()

Implementation

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