Subnet.fromJson constructor
Implementation
factory Subnet.fromJson(Map<String, dynamic> json) {
return Subnet(
subnetAvailabilityZone: json['SubnetAvailabilityZone'] as String?,
subnetIdentifier: json['SubnetIdentifier'] as String?,
);
}