asset method

AzImage asset(
  1. String data
)

Implementation

AzImage asset(String data){
  _widget = Image.asset(data,
    key: key,
    // AssetBundle? bundle,
    frameBuilder: _frameBuilder, // Widget Function(BuildContext, Widget, int?, bool)? frameBuilder,
    errorBuilder: _errorBuilder, // Widget Function(BuildContext, Object, StackTrace?)? errorBuilder,
    // String? semanticLabel,
    // bool excludeFromSemantics = false,
    scale: _scale,
    width: _width,
    height: _height,
    color: _color,
    // Animation<double>? opacity,
    // BlendMode? colorBlendMode,
    fit: _fit,
    alignment: _alignment,
    repeat: _repeat,
    // Rect? centerSlice,
    // bool matchTextDirection = false,
    // bool gaplessPlayback = false,
    // bool isAntiAlias = false,
    // String? package,
    // FilterQuality filterQuality = FilterQuality.low,
    // int? cacheWidth,
    // int? cacheHeight,
  );

  return this;
}