network method
Implementation
AzImage network(String data){
_widget = Image.network(data,
key: key,
scale: _scale,
frameBuilder: _frameBuilder, // // Widget Function(BuildContext, Widget, int?, bool)? frameBuilder,
loadingBuilder: _loadingBuilder, // // Widget Function(BuildContext, Widget, ImageChunkEvent?)? loadingBuilder,
errorBuilder: _errorBuilder, // // Widget Function(BuildContext, Object, StackTrace?)? errorBuilder,
// String? semanticLabel,
// bool excludeFromSemantics = false,
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,
// FilterQuality filterQuality = FilterQuality.low,
// bool isAntiAlias = false,
// Map<String, String>? headers,
// int? cacheWidth,
// int? cacheHeight,
);
return this;
}