DeleteVolumeOutput.fromJson constructor

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

Implementation

factory DeleteVolumeOutput.fromJson(Map<String, dynamic> json) {
  return DeleteVolumeOutput(
    volumeARN: json['VolumeARN'] as String?,
  );
}