Image constructor

Image({
  1. required String url,
  2. required int width,
  3. required int height,
  4. bool isCatalog = false,
})

Implementation

Image({
  required this.url,
  required this.width,
  required this.height,
  this.isCatalog = false,
});