ComImage constructor

const ComImage(
  1. String src, {
  2. Key? key,
  3. double? width,
  4. double? height,
  5. double? radius,
  6. BoxFit fit = BoxFit.cover,
})

Implementation

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