wiseclient 1.1.1 copy "wiseclient: ^1.1.1" to clipboard
wiseclient: ^1.1.1 copied to clipboard

A http client based on Dio with extra features and a few interceptors for basic functionality.

example/wiseclient_example.dart

import 'package:wiseclient/wiseclient.dart';

void main() async {
  final options = WiseOptions.base(
    url: 'https://jsonplaceholder.typicode.com/',
  );
  final client = WiseClient(
    options: options,
    wiseInterceptors: [
      WiseInterceptor.logging,
    ],
  );

  await client.wGet('todos/1');
}
6
likes
150
points
32
downloads

Publisher

unverified uploader

Weekly Downloads

A http client based on Dio with extra features and a few interceptors for basic functionality.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

dio, flutter, flutter_secure_storage, fresh_dio, native_dio_adapter, talker_dio_logger

More

Packages that depend on wiseclient