ImageView constructor

const ImageView({
  1. Key? key,
  2. required String url,
  3. required bool imageDownloadButton,
})

Implementation

const ImageView({
  super.key,
  required this.url,
  required this.imageDownloadButton,
});