lynk_io 0.0.1
lynk_io: ^0.0.1 copied to clipboard
A lightweight, modular, and generic Flutter networking library that acts as a unified communication layer between your app and remote APIs. Built on top of Dio and inspired by clean architecture princ [...]
lynk_io #
A scalable and reusable API communication layer built with Dio for Flutter apps.
Features #
- Simple GET/POST API abstraction
- Error & timeout handling
- Logger integration
- Modular and Clean Architecture compliant
Usage #
final api = locator<ApiClient>();
final result = await api.get<User>(
endpoint: '/users/1',
fromJson: User.fromJson,
);