ease_http 0.1.0 copy "ease_http: ^0.1.0" to clipboard
ease_http: ^0.1.0 copied to clipboard

outdated

Based on Dart http package

example/main.dart

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);
}