ImageView constructor

const ImageView({
  1. dynamic key,
  2. required dynamic attachment,
  3. bool? openView = true,
})

Implementation

const ImageView({
  super.key,
  required this.attachment,
  this.openView = true,
});