Image constructor

Image({
  1. double? aspectRatio,
  2. String? imageUrl,
  3. OnClick? onClick,
})

Implementation

Image({
  this.aspectRatio,
  this.imageUrl,
  this.onClick,
});