ImageElement constructor

const ImageElement({
  1. required int type,
  2. required String imagePath,
  3. String? videoPath,
})

Implementation

const ImageElement({
  required this.type,
  required this.imagePath,
  this.videoPath,
});