app_smart_network 1.0.4
app_smart_network: ^1.0.4 copied to clipboard
A smart Flutter network package with built-in error handling, retry logic, and multilingual error messages (en/ar).
1.0.3 #
Breaking changes #
-
ServerFailureandCacheFailureremoved —failures.dartand its public exports have been deleted. TheFailureabstraction was out of scope for a network package; it leaked domain-layer concerns into the library and forced an unnecessaryequatabledependency on consumers.-
Migration: catch
ApiExceptiondirectly in your repository layer, or define your ownFailuretypes and map fromApiExceptionthere.// before } on ApiException catch (e) { return Left(ServerFailure.fromException(e)); } // after – option A: catch ApiException directly } on ApiException catch (e) { return Left(MyServerFailure(e.message, e.statusCode)); }
-
-
equatabledependency removed — the package no longer depends onequatable. Remove it from your ownpubspec.yamlif you were relying on the transitive export.
1.0.2 #
Bug fixes #
ErrorHandler.handleErrornow passes anApiExceptionthrough unchanged instead of re-wrapping it as a generic'UnexpectedError'(status 0). This prevented the real error type, status code, and message from reaching callers whenever anApiExceptionentered the catch block (e.g. thrown by a custom interceptor).RequestService.execute—ensureConnected(),withMobileTimeouts(), andresolveUrl()are now inside the singletry/catchblock, so every error type (connectivity, timeout, bad response, certificate, cancel) flows throughErrorHandlervia one consistent code path.
1.0.1 #
Bug fixes #
ApiService.instancenow throws aStateErrorinstead of silently creating a broken client wheninitialize()has not been called yet.ApiService.isInitializedgetter added — use it to safely check whetherinitialize()has been called before accessinginstance.withMobileTimeoutsno longer discards user-suppliedOptionsfields. It now mutates the existing object in-place, only settingreceiveTimeoutwhen the caller has not already provided one.removeAppLocale()now restores the locale that was active atinitialize()time (fromNetworkConfig.defaultHeaders['Accept-Language']) instead of always falling back to'en'.NetworkLocale.clearCustomTranslations([locale])added — removes custom translations for a specific locale, or for all locales when called without an argument.
1.0.0 #
Initial stable release.
Features #
ApiServicesingleton withinitialize(NetworkConfig)entry pointNetworkConfig— configure base URL, timeouts, default headers, SSL, and unauthorized callbackHttpMethodenum —get,post,put,patch,deleteRequestService— unified HTTP request execution with connectivity guard and mobile timeout extensionDownloadRequestService— file download with progress callbackUploadRequestService— multipart file upload with extra fields and progress callbackNetworkLocale— locale-aware error messages; built-in English and Arabic translations covering all standard HTTP status codes and network error types; extensible viaaddTranslations()setAppLocale(locale)— setsAccept-Languageheader and switches error-message locale in one callErrorHandler— convertsDioExceptiontoApiExceptionwith translated messagesApiException— rich exception withstatusCode,apiErrorCode,errorCategory,hasApiErrorCode(), andgetResponseField()ServerFailure/CacheFailure— domain-layerFailurewrappers (Equatable)- Automatic retry on idempotent methods (GET, PUT, DELETE) with exponential back-off (3 retries: 1 s, 2 s, 3 s)
- Connectivity check before every request with a single 600 ms retry for transient states
- Background JSON decoding via
computeisolate - Debug request/response logging via
PrettyDioLogger(debug builds only) - Per-request
baseUrloverride, cancel token, query parameters, and send/receive progress callbacks example/app demonstrating all features against JSONPlaceholder API