retrolite 1.1.2 copy "retrolite: ^1.1.2" to clipboard
retrolite: ^1.1.2 copied to clipboard

A RESTful API client for Dart and Flutter, with a simple API syntax, without reflection.

retrolite #

retrolite is a RESTful API client for Dart and Flutter, with a simple API syntax, without reflection.

This package uses the abstraction classes from flutuate_api, used to create RESTful api clients.

Configuration #

Add retrolite to pubspec.yaml under the dependencies field.

dependencies:
  retrolite: ^latest_version

Import #

Add the following import in your library :

import 'package:retrolite/retrolite.dart';

Example #

Below, a simple provider sample to REQ|RES API:

/// [REQ|RES](https://reqres.in) API provider 
class ReqResApi extends IApi {
  /// Get the users list.
  Future<Response<ListUsers>> listUsers(int page) => 
    client.get<ListUsers>(
      'api/users?page=$page',
      contentType: ContentType.json,
      deserializer: ListUsers.deserialize,
    );

  /// Request the users list with delay.
  Future<Response<ListUsers>> listUsersWithDelay(int delay) => 
    client.get<ListUsers>(
      'api/users',
      queryParameters: {
        'delay': delay
      },
      contentType: ContentType.json,
      deserializer: ListUsers.deserialize,
    );

  /// Request the register service with success.
  Future<Response<RegisterResult>> register(RegisterContent content) => 
    client.post<RegisterResult>(
      'api/register',
      deserializer: RegisterResult.deserialize,
      contentType: ContentType.json,
      body: content
    );
}

Usage #

The sample project has more details about how to use the Retrolite package.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

0
likes
40
pub points
0%
popularity

Publisher

verified publisherlamkr.com

A RESTful API client for Dart and Flutter, with a simple API syntax, without reflection.

Repository

License

MIT (LICENSE)

Dependencies

collection, http

More

Packages that depend on retrolite