ImageModel constructor

const ImageModel({
  1. required String imageUrl,
  2. String? caption,
})

Implementation

const ImageModel({
  required this.imageUrl,
  this.caption,
}) : videoUrl = null;