ImageView constructor

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

Implementation

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