onNetworkImage function
Implementation
Widget onNetworkImage({required String imagePath,
double size = 24, double? width, double? height,
BoxFit fit = BoxFit.cover,}) {
return Image.network(
imagePath,
width: width ?? size,
height: height ?? size,
fit: fit,
);
}