loadImageWithUrl method
Implementation
@override
Widget loadImageWithUrl(
{required String imageUrl, double? width, double? height}) {
return Image.network(imageUrl, width: width, height: height);
}
@override
Widget loadImageWithUrl(
{required String imageUrl, double? width, double? height}) {
return Image.network(imageUrl, width: width, height: height);
}