Tape constructor

Tape({
  1. String? kMSKey,
  2. DateTime? poolEntryDate,
  3. String? poolId,
  4. double? progress,
  5. DateTime? retentionStartDate,
  6. String? tapeARN,
  7. String? tapeBarcode,
  8. DateTime? tapeCreatedDate,
  9. int? tapeSizeInBytes,
  10. String? tapeStatus,
  11. int? tapeUsedInBytes,
  12. String? vTLDevice,
  13. bool? worm,
})

Implementation

Tape({
  this.kMSKey,
  this.poolEntryDate,
  this.poolId,
  this.progress,
  this.retentionStartDate,
  this.tapeARN,
  this.tapeBarcode,
  this.tapeCreatedDate,
  this.tapeSizeInBytes,
  this.tapeStatus,
  this.tapeUsedInBytes,
  this.vTLDevice,
  this.worm,
});