FullScreenImage constructor

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

Creates a fullscreen image viewer.

Parameters:

  • url: The network URL of the image to display (required)
  • heroTag: Unique tag for Hero animation (required, should match the thumbnail's hero tag)

Implementation

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