ease_http 0.1.8 ease_http: ^0.1.8 copied to clipboard
Based on Dart http package, makes http package more powerful and easier to use.
import 'package:ease_http/ease_http.dart';
void main() async {
final request = SingleRequest();
// result is typed.
final result = await request.get<Map<String, dynamic>>('http://example.com');
print(result);
}