assetImage method
Implementation
Widget assetImage(String assetPath) {
return Image.asset(
assetPath,
color: color,
width: width,
height: height,
fit: fit,
errorBuilder: (context, exception, stackTrace) => _sizedPlaceholder(),
colorBlendMode: blendMode,
);
}