toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final networkAttachment = this.networkAttachment;
final publicIpAddressDisabled = this.publicIpAddressDisabled;
final routeAllTraffic = this.routeAllTraffic;
return {
'networkAttachment': ?networkAttachment,
'publicIpAddressDisabled': ?publicIpAddressDisabled,
'routeAllTraffic': ?routeAllTraffic,
};
}