ub3lal 1 개월 전
부모
커밋
4b1f2655e0
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      lib/src/bloc/cashed_image_bloc.dart

+ 0 - 2
lib/src/bloc/cashed_image_bloc.dart

@@ -13,13 +13,11 @@ class CashedImageBloc extends Bloc<CashedImageEvent, CashedImageState> {
   CashedImageBloc() : super(CashedImageInitial()) {
     on<GetStartImageEvent>((event, emit) async {
       emit(CashedImageLoadingState());
-
       HttpGetImage httpGetImage = HttpGetImage(
         url: event.url,
         count: event.count,
         httpHeaders: event.httpHeaders,
       );
-
       if (event.cached) {
         FileInfo? fileInfo;
         if (event.cachkey != null) {