DescribeCachediSCSIVolumesOutput.fromJson constructor
Implementation
factory DescribeCachediSCSIVolumesOutput.fromJson(Map<String, dynamic> json) {
return DescribeCachediSCSIVolumesOutput(
cachediSCSIVolumes: (json['CachediSCSIVolumes'] as List?)
?.whereNotNull()
.map((e) => CachediSCSIVolume.fromJson(e as Map<String, dynamic>))
.toList(),
);
}