MediaAttachment constructor

const MediaAttachment({
  1. Key? key,
  2. required Attachment attachment,
  3. double? width,
  4. double? height,
  5. BoxFit? fit,
  6. Future<void> onError()?,
})

Implementation

const MediaAttachment({
  super.key,
  required this.attachment,
  this.width,
  this.height,
  this.fit,
  this.onError,
});