assetIcon static method
Implementation
static Image assetIcon(
{required String assetName,
double? height,
double? width,
BoxFit fit = BoxFit.cover}) {
return Image.asset(assetName,
height: height, width: width, fit: fit, package: iconPackageName);
}