ListAvailableZonesResponse.fromJson constructor

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

Implementation

factory ListAvailableZonesResponse.fromJson(Map<String, dynamic> json) {
  return ListAvailableZonesResponse(
    aZList: (json['AZList'] as List?)
        ?.whereNotNull()
        .map((e) => e as String)
        .toList(),
  );
}