wiseclient 1.1.3-prerelease.2 copy "wiseclient: ^1.1.3-prerelease.2" to clipboard
wiseclient: ^1.1.3-prerelease.2 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
160
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

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

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

dio, flutter, flutter_secure_storage, jwt_decoder, native_dio_adapter, talker_dio_logger

More

Packages that depend on wiseclient