FullScreenImage constructor

const FullScreenImage({
  1. Key? key,
  2. required String imageUrl,
  3. required String heroTag,
})

Implementation

const FullScreenImage({
  super.key,
  required this.imageUrl,
  required this.heroTag,
});