localImage method
Implementation
Widget localImage(
{required String alias,
double? width,
double? height,
BoxFit fit = BoxFit.scaleDown,
BorderRadius? borderRadius,
Color? backgroundColor}) {
return _ImageLoadProvider.loadLocalImage(alias, width ?? 0, height ?? 0, fit, borderRadius ?? BorderRadius.zero,
backgroundColor ?? Colors.transparent, _imageConfig);
}