VolumeConfiguration constructor

VolumeConfiguration({
  1. required String mountPoint,
  2. required int numberOfDisks,
  3. required int size,
  4. bool? encrypted,
  5. int? iops,
  6. int? raidLevel,
  7. String? volumeType,
})

Implementation

VolumeConfiguration({
  required this.mountPoint,
  required this.numberOfDisks,
  required this.size,
  this.encrypted,
  this.iops,
  this.raidLevel,
  this.volumeType,
});