PhotoView constructor

const PhotoView({
  1. Key? key,
  2. required String src,
})

Implementation

const PhotoView({
  Key? key,
  required this.src,
}) : super(key: key);