loadImageWithUrl method

  1. @override
Widget loadImageWithUrl({
  1. required String imageUrl,
  2. double? width,
  3. double? height,
})
override

Implementation

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