getAssetSizeImage static method
Implementation
static Image getAssetSizeImage(String assetFilePath, double w, double h,
{Color? color, String? package}) {
if (!assetFilePath.startsWith('assets')) {
assetFilePath = 'assets/$assetFilePath';
}
return Image.asset(
assetFilePath,
package: package ?? BaseStrings.flutterPackageName,
// scale: 3.0,
width: w,
height: h,
color: color,
);
}