onAssetImage function
Implementation
Widget onAssetImage({
required String imagePath, double size = 24, double? width,
double? height, BoxFit fit = BoxFit.contain,}) {
return Image.asset(imagePath, width: width ?? size,
height: height ?? size, fit: fit,);
}