Volume constructor

Volume({
  1. String? availabilityZone,
  2. String? device,
  3. String? ec2VolumeId,
  4. bool? encrypted,
  5. String? instanceId,
  6. int? iops,
  7. String? mountPoint,
  8. String? name,
  9. String? raidArrayId,
  10. String? region,
  11. int? size,
  12. String? status,
  13. String? volumeId,
  14. String? volumeType,
})

Implementation

Volume({
  this.availabilityZone,
  this.device,
  this.ec2VolumeId,
  this.encrypted,
  this.instanceId,
  this.iops,
  this.mountPoint,
  this.name,
  this.raidArrayId,
  this.region,
  this.size,
  this.status,
  this.volumeId,
  this.volumeType,
});