toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final consumerNetwork = this.consumerNetwork;
  final existingDnsRecordSet = this.existingDnsRecordSet;
  final newDnsRecordSet = this.newDnsRecordSet;
  final zone = this.zone;
  return {
    'consumerNetwork': ?consumerNetwork,
    'existingDnsRecordSet': ?existingDnsRecordSet,
    'newDnsRecordSet': ?newDnsRecordSet,
    'zone': ?zone,
  };
}