PreviewData constructor

const PreviewData({
  1. required Type type,
  2. String? heroTag,
  3. ImageData? image,
  4. VideoData? video,
})

Implementation

const PreviewData({
  required this.type,
  this.heroTag,
  this.image,
  this.video,
});