imgFromCommon static method
Implementation
static Image imgFromCommon(
{required String assetName, required String packageName, double? width, double? height, BoxFit? fit}) {
return Image.asset(
GtdString.pathForAsset(packageName, assetName),
width: width,
height: height,
fit: fit,
);
}