ImageItemContent constructor

ImageItemContent({
  1. String? url,
  2. String? assetName,
  3. String? semanticLabel,
  4. bool excludeFromSemantics = false,
  5. double? width,
  6. double? height,
  7. Color? color,
  8. BlendMode? colorBlendMode,
  9. BoxFit fit = BoxFit.cover,
  10. ImageRepeat repeat = ImageRepeat.noRepeat,
  11. bool matchTextDirection = false,
  12. bool gaplessPlayback = false,
  13. bool isAntiAlias = false,
  14. FilterQuality filterQuality = FilterQuality.low,
})

Implementation

ImageItemContent({
  this.url,
  this.assetName,
  this.semanticLabel,
  this.excludeFromSemantics = false,
  this.width,
  this.height,
  this.color,
  this.colorBlendMode,
  this.fit = BoxFit.cover,
  this.repeat = ImageRepeat.noRepeat,
  this.matchTextDirection = false,
  this.gaplessPlayback = false,
  this.isAntiAlias = false,
  this.filterQuality = FilterQuality.low,
}) {
  _init();
}