VideoAndPicture constructor

const VideoAndPicture({
  1. Key? key,
  2. required String? image,
  3. required String? title,
  4. VideoPlayerController? controller,
})

Implementation

const VideoAndPicture({
  Key? key,
  required this.image,
  required this.title,
  this.controller,
}) : super(key: key);