customNetworkImage function

Widget customNetworkImage(
  1. String path, {
  2. BoxFit fit = BoxFit.contain,
})

Implementation

Widget customNetworkImage(String path, {BoxFit fit = BoxFit.contain}) {
  return HandledCachedNetworkImage(
    path,
    fit: fit,
    enableFullScreen: false,
  );
}