toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alternativeNameServerConfig = this.alternativeNameServerConfig;
final description = this.description;
final dns64Config = this.dns64Config;
final enableInboundForwarding = this.enableInboundForwarding;
final enableLogging = this.enableLogging;
final id = this.id;
final kind = this.kind;
final name = this.name;
final networks = this.networks;
return {
'alternativeNameServerConfig': ?alternativeNameServerConfig,
'description': ?description,
'dns64Config': ?dns64Config,
'enableInboundForwarding': ?enableInboundForwarding,
'enableLogging': ?enableLogging,
'id': ?id,
'kind': ?kind,
'name': ?name,
'networks': ?networks,
};
}