Subnet.fromJson constructor

Subnet.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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