load method
Implementation
Image load({double? width, double? height, Color? color, BoxFit? fit}) {
return Image.asset(
'assets/$name.${extension.name}',
width: width,
height: height,
color: color,
fit: fit,
package: _pkgName,
);
}