DescribeCachediSCSIVolumesOutput.fromJson constructor

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

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(),
  );
}