arna_web_service 1.1.0
arna_web_service: ^1.1.0 copied to clipboard
Arna Web Service is a simple and powerful HTTP package for Flutter.
Introduction #
A simple and powerful HTTP package for Flutter.
Getting Started #
Add Arna Web Service as a dependency in your pubspec.yaml:
dependencies:
arna_web_service: ^1.1.0
Import it:
import 'package:arna_web_service/arna_web_service.dart';
Extend your class:
class APIController extends ArnaWebServiceController {}
Use it!
final Response? response = await webService.get(
Uri.parse('https://api.ipify.org'),
);