ImageView constructor

const ImageView({
  1. Key? key,
  2. String? source,
  3. Uint8List? bytes,
  4. double? width,
  5. double? height,
  6. Color? color,
  7. BoxFit fit = BoxFit.fill,
  8. BlendMode? blendMode,
})

Implementation

const ImageView({
  super.key,
  this.source,
  this.bytes,
  this.width,
  this.height,
  this.color,
  this.fit = BoxFit.fill,
  this.blendMode,
});