JsonMemoryImageBuilder constructor

const JsonMemoryImageBuilder({
  1. required Alignment alignment,
  2. int? cacheHeight,
  3. int? cacheWidth,
  4. Rect? centerSlice,
  5. Color? color,
  6. BlendMode? colorBlendMode,
  7. ImageErrorWidgetBuilder? errorBuilder,
  8. required bool excludeFromSemantics,
  9. required FilterQuality filterQuality,
  10. BoxFit? fit,
  11. ImageFrameBuilder? frameBuilder,
  12. required bool gaplessPlayback,
  13. double? height,
  14. required Uint8List image,
  15. required bool isAntiAlias,
  16. required bool matchTextDirection,
  17. double? opacity,
  18. required ImageRepeat repeat,
  19. required double scale,
  20. String? semanticLabel,
  21. double? width,
})

Implementation

const JsonMemoryImageBuilder({
  required this.alignment,
  this.cacheHeight,
  this.cacheWidth,
  this.centerSlice,
  this.color,
  this.colorBlendMode,
  this.errorBuilder,
  required this.excludeFromSemantics,
  required this.filterQuality,
  this.fit,
  this.frameBuilder,
  required this.gaplessPlayback,
  this.height,
  required this.image,
  required this.isAntiAlias,
  required this.matchTextDirection,
  this.opacity,
  required this.repeat,
  required this.scale,
  this.semanticLabel,
  this.width,
}) : super(numSupportedChildren: kNumSupportedChildren);