Vovan hace 1 mes
padre
commit
70fab16efd
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      lib/src/CashedNetworkImageWidget.dart

+ 2 - 2
lib/src/CashedNetworkImageWidget.dart

@@ -20,7 +20,7 @@ typedef ImageWidgetBuilder =
 class CachedNetworkImageWidget extends StatelessWidget {
   final String imageUrl;
   final int count;
-  final BoxFit fit;
+
   final double? width;
   final double? height;
   final Widget? placeholder;
@@ -35,7 +35,7 @@ class CachedNetworkImageWidget extends StatelessWidget {
     super.key,
     required this.imageUrl,
     required this.cacheKey,
-    required this.fit,
+
     this.count = 10,
     this.height,
     this.width,