toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cidr = this.cidr;
  final gatewayIp = this.gatewayIp;
  final id = this.id;
  final ipAddress = this.ipAddress;
  final jumboFramesEnabled = this.jumboFramesEnabled;
  final labels = this.labels;
  final macAddress = this.macAddress;
  final mountPoints = this.mountPoints;
  final name = this.name;
  final pod = this.pod;
  final reservations = this.reservations;
  final servicesCidr = this.servicesCidr;
  final state = this.state;
  final type = this.type;
  final vlanId = this.vlanId;
  final vrf = this.vrf;
  final vrfAttachment = this.vrfAttachment;
  return {
    'cidr': ?cidr,
    'gatewayIp': ?gatewayIp,
    'id': ?id,
    'ipAddress': ?ipAddress,
    'jumboFramesEnabled': ?jumboFramesEnabled,
    'labels': ?labels,
    'macAddress': ?macAddress,
    'mountPoints': ?mountPoints,
    'name': ?name,
    'pod': ?pod,
    'reservations': ?reservations,
    'servicesCidr': ?servicesCidr,
    'state': ?state,
    'type': ?type,
    'vlanId': ?vlanId,
    'vrf': ?vrf,
    'vrfAttachment': ?vrfAttachment,
  };
}