toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bandwidth = this.bandwidth;
  final cidr = this.cidr;
  final gcpService = this.gcpService;
  final id = this.id;
  final jumboFramesEnabled = this.jumboFramesEnabled;
  final name = this.name;
  final serviceCidr = this.serviceCidr;
  final type = this.type;
  final userNote = this.userNote;
  final vlanAttachments = this.vlanAttachments;
  final vlanSameProject = this.vlanSameProject;
  final vrf = this.vrf;
  return {
    'bandwidth': ?bandwidth,
    'cidr': ?cidr,
    'gcpService': ?gcpService,
    'id': ?id,
    'jumboFramesEnabled': ?jumboFramesEnabled,
    'name': ?name,
    'serviceCidr': ?serviceCidr,
    'type': ?type,
    'userNote': ?userNote,
    'vlanAttachments': ?vlanAttachments,
    'vlanSameProject': ?vlanSameProject,
    'vrf': ?vrf,
  };
}