toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final gatewayIp = this.gatewayIp;
  final ipCidrRange = this.ipCidrRange;
  final name = this.name;
  final state = this.state;
  final type = this.type;
  final vlanId = this.vlanId;
  return {
    'gatewayIp': ?gatewayIp,
    'ipCidrRange': ?ipCidrRange,
    'name': ?name,
    'state': ?state,
    'type': ?type,
    'vlanId': ?vlanId,
  };
}