toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final externalIpv6 = this.externalIpv6;
final externalIpv6PrefixLength = this.externalIpv6PrefixLength;
final name = this.name;
final natIP = this.natIP;
final networkTier = this.networkTier;
final publicPtrDomainName = this.publicPtrDomainName;
final setPublicPtr = this.setPublicPtr;
final type = this.type;
return {
'externalIpv6': ?externalIpv6,
'externalIpv6PrefixLength': ?externalIpv6PrefixLength,
'name': ?name,
'natIP': ?natIP,
'networkTier': ?networkTier,
'publicPtrDomainName': ?publicPtrDomainName,
'setPublicPtr': ?setPublicPtr,
'type': ?type,
};
}