configAssetImage static method
Implementation
static Image configAssetImage(dynamic type,
{double? w, double? h, BoxFit? fit, String format = 'png'}) {
return Image.asset(
configImagePath(type),
width: w,
height: h,
fit: fit,
);
}