ComImage constructor

const ComImage(
  1. String src, {
  2. Key? key,
  3. double? width,
  4. double? height,
  5. double? radius,
  6. BoxFit fit = BoxFit.cover,
  7. double? minWidth,
  8. double? minHeight,
  9. Widget? placeholder,
  10. Widget? errorBuilder,
})

Implementation

const ComImage(
  this.src, {
  super.key,
  this.width,
  this.height,
  this.radius,
  this.fit = BoxFit.cover,
  this.minWidth,
  this.minHeight,
  this.placeholder,
  this.errorBuilder,
});