Image constructor

const Image(
  1. ImageProvider image, {
  2. double? width,
  3. double? height,
  4. double? dpi,
  5. BoxFit fit = BoxFit.contain,
})

Image API.

Implementation

const Image(
  this.image, {
  this.width,
  this.height,
  this.dpi,
  this.fit = BoxFit.contain,
});