api_manager 0.1.1 copy "api_manager: ^0.1.1" to clipboard
api_manager: ^0.1.1 copied to clipboard

outdated

A simple package for manage api request easily with the help of flutter dio api.

example/example.dart

import 'package:api_manager/api_manager.dart';

void main() async {
  ApiManager _apiManager = ApiManager();
  _apiManager.options.baseUrl = "http://61.247.188.124:8009/api/v1/";

  ApiResponse<Map<String, dynamic>> response = await _apiManager.request(
    requestType: RequestType.GET,
    route: "front/job-postings",
  );
  print(response);
}
24
likes
0
points
63
downloads

Publisher

verified publisherdeepqtech.com

Weekly Downloads

A simple package for manage api request easily with the help of flutter dio api.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

connectivity, dio, flutter

More

Packages that depend on api_manager