ImageContent constructor

ImageContent({
  1. required String imageName,
  2. required String imagePath,
  3. required String imageUrl,
  4. required List<int> imageBytes,
  5. int width = 0,
  6. int height = 0,
  7. int size = 0,
})

Implementation

ImageContent({
  required this.imageName,
  required this.imagePath,
  required this.imageUrl,
  required this.imageBytes,
  this.width = 0,
  this.height = 0,
  this.size = 0,
});