ImageView constructor

const ImageView({
  1. Key? key,
  2. required String imgSource,
  3. BoxFit? fit,
  4. double? width,
  5. double? height,
  6. BorderRadius? borderRadius,
  7. Widget? placeholder,
})

Implementation

const ImageView({
  super.key,
  required this.imgSource,
  this.fit,
  this.width,
  this.height,
  this.borderRadius,
  this.placeholder,
});