ContentImage constructor

const ContentImage({
  1. Key? key,
  2. String? url,
  3. double? width,
  4. double? height,
  5. ImageReference? ref,
  6. BoxFit fit = BoxFit.cover,
  7. String? format,
  8. Color? color,
  9. BlendMode? colorBlendMode,
  10. AlignmentGeometry alignment = Alignment.center,
})

Implementation

const ContentImage({
  super.key,
  this.url,
  this.width,
  this.height,
  this.ref,
  this.fit = BoxFit.cover,
  this.format,
  this.color,
  this.colorBlendMode,
  this.alignment = Alignment.center,
});