networkImage method
Implementation
Widget networkImage() {
return Image.network(
path,
width: width,
color: color,
height: height,
fit: fit,
errorBuilder: (context, obj, error) => SizedBox(width: width, height: height),
colorBlendMode: blendMode,
);
}