Image constructor

Image({
  1. int? height,
  2. String? url,
  3. int? width,
})

Implementation

Image({
  this.height,
  this.url,
  this.width,
});