VolumeAttachmentStatus constructor

const VolumeAttachmentStatus({
  1. VolumeError? attachError,
  2. required bool attached,
  3. Map<String, String>? attachmentMetadata,
  4. VolumeError? detachError,
})

Default constructor.

Implementation

const VolumeAttachmentStatus({
  this.attachError,
  required this.attached,
  this.attachmentMetadata,
  this.detachError,
});