ImageViewView constructor

const ImageViewView({
  1. Key? key,
  2. required String imageName,
  3. String? imagePath,
  4. String? imageUrl,
  5. bool enableAppBar = true,
})

Implementation

const ImageViewView(
    {super.key,
    required this.imageName,
    this.imagePath,
    this.imageUrl,
    this.enableAppBar = true});