toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dnsZone = this.dnsZone;
  final gcpProjectId = this.gcpProjectId;
  final internetAccess = this.internetAccess;
  final network = this.network;
  final primaryZone = this.primaryZone;
  final region = this.region;
  final secondaryZone = this.secondaryZone;
  final subnetwork = this.subnetwork;
  final tertiaryZone = this.tertiaryZone;
  return {
    'dnsZone': ?dnsZone,
    'gcpProjectId': ?gcpProjectId,
    'internetAccess': ?internetAccess,
    'network': ?network,
    'primaryZone': ?primaryZone,
    'region': ?region,
    'secondaryZone': ?secondaryZone,
    'subnetwork': ?subnetwork,
    'tertiaryZone': ?tertiaryZone,
  };
}