RouterNatSubnetworkToNat.fromJson constructor
RouterNatSubnetworkToNat.fromJson(
- Map json_
Implementation
RouterNatSubnetworkToNat.fromJson(core.Map json_)
: this(
name: json_['name'] as core.String?,
secondaryIpRangeNames: (json_['secondaryIpRangeNames'] as core.List?)
?.map((value) => value as core.String)
.toList(),
sourceIpRangesToNat: (json_['sourceIpRangesToNat'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);