NikuImage constructor

NikuImage(
  1. ImageProvider<Object> image, {
  2. Key? key,
  3. ImageFrameBuilder? frameBuilder,
  4. ImageLoadingBuilder? loadingBuilder,
  5. ImageErrorWidgetBuilder? errorBuilder,
  6. double? width,
  7. double? height,
  8. Color? color,
  9. Animation<double>? opacity,
  10. FilterQuality? filterQuality,
  11. BlendMode? colorBlendMode,
  12. BoxFit? fit,
  13. AlignmentGeometry? alignment,
  14. ImageRepeat? repeat,
  15. Rect? centerSlice,
  16. bool? matchTextDirection,
  17. bool? gaplessPlayback,
  18. String? semanticLabel,
  19. bool? excludeFromSemantics,
  20. bool? isAntiAlias,
})

Implementation

NikuImage(
  this.image, {
  this.key,
  this.frameBuilder,
  this.loadingBuilder,
  this.errorBuilder,
  this.width,
  this.height,
  this.color,
  this.opacity,
  this.filterQuality,
  this.colorBlendMode,
  this.fit,
  this.alignment,
  this.repeat,
  this.centerSlice,
  this.matchTextDirection,
  this.gaplessPlayback,
  this.semanticLabel,
  this.excludeFromSemantics,
  this.isAntiAlias,
}) : super(key: key);