Image constructor

Image({
  1. required String size,
  2. int scale = 1,
  3. String path = '',
  4. required String filename,
})

Implementation

Image({
  required this.size,
  this.scale = 1,
  this.path = '',
  required this.filename,
});