toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (customDns != null) 'customDns': customDns!.toJson(),
      if (glueRecords != null)
        'glueRecords': glueRecords!.map((value) => value.toJson()).toList(),
      if (googleDomainsDns != null)
        'googleDomainsDns': googleDomainsDns!.toJson(),
    };