NikuImage constructor
      
      NikuImage(
    
    
- ImageProvider<
Object> image, { - Key? key,
 - ImageFrameBuilder? frameBuilder,
 - ImageLoadingBuilder? loadingBuilder,
 - ImageErrorWidgetBuilder? errorBuilder,
 - double? width,
 - double? height,
 - Color? color,
 - Animation<
double> ? opacity, - FilterQuality? filterQuality,
 - BlendMode? colorBlendMode,
 - BoxFit? fit,
 - AlignmentGeometry? alignment,
 - ImageRepeat? repeat,
 - Rect? centerSlice,
 - bool? matchTextDirection,
 - bool? gaplessPlayback,
 - String? semanticLabel,
 - bool? excludeFromSemantics,
 - 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);