arna_web_service 1.0.0
arna_web_service: ^1.0.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.0.0
Import it:
import 'package:arna_web_service/arna_web_service.dart';
Use it!
final ArnaWebService webService = ArnaWebService.service();
final Response? response = await webService.get(
Uri.parse('https://api.ipify.org'),
);