loadNetworkImageWithLoader method
Implementation
@override
Widget loadNetworkImageWithLoader(
{required String imageUrl, double? width, double? height}) {
return Stack(
children: <Widget>[
const Center(child: CircularProgressIndicator()),
Center(
child: Image.network(imageUrl, width: width, height: height),
),
],
);
}