networkImage static method

Widget networkImage({
  1. required String url,
  2. double? width,
  3. double? height,
  4. int? cacheWidth,
  5. int? cacheHeight,
  6. BoxFit? fit,
  7. bool loadProgress = true,
  8. bool clearMemoryCacheWhenDispose = false,
  9. bool lowMemory = true,
  10. Widget? errorWidget,
})

Implementation

static Widget networkImage({
  required String url,
  double? width,
  double? height,
  int? cacheWidth,
  int? cacheHeight,
  BoxFit? fit,
  bool loadProgress = true,
  bool clearMemoryCacheWhenDispose = false,
  bool lowMemory = true,
  Widget? errorWidget,
}) =>
    lowMemoryNetworkImage(
      url: url,
      width: width,
      height: height,
      cacheWidth: cacheWidth,
      cacheHeight: cacheHeight,
      fit: fit,
      loadProgress: loadProgress,
      clearMemoryCacheWhenDispose: clearMemoryCacheWhenDispose,
      lowMemory: lowMemory,
      errorWidget: errorWidget,
    );