ResourceLocation.fromJson constructor
Implementation
factory ResourceLocation.fromJson(Map<String, dynamic> json) {
return ResourceLocation(
availabilityZone: json['availabilityZone'] as String?,
regionName: (json['regionName'] as String?)?.toRegionName(),
);
}