resty 0.0.5 copy "resty: ^0.0.5" to clipboard
resty: ^0.0.5 copied to clipboard

outdated

A simple, light and useful http wrapper.

A simple, light and useful http wrapper inspired from zttp for dart and flutter.

Features ✨ #

  • 📦 Lightweight.
  • 🚀 Simple use.
  • ✅ Support both dart & flutter.

Usage 🤔 #

Request ➡️ #

/// `https://www.example.com:3000/api/v1/`
final resty = const Resty(
    /// true:https | false:http (default)
    secure: true,
    /// base-url without http
    host: 'www.example.com',
    /// secure:443 | not-secure:80 (default)
    port: 3000,
    /// base path
    path: 'api',
    /// can be override later in any request
    version: 'v1',
    /// use to set accept & content-type to `application/json`
    json: true,
    /// use to enable logger
    logger: true,
    /// use to send shared headers
    headers: {
      'x-header': 'x-value',
    },
);

/// It as simple as
/// `https://www.example.com:3000/api/v1/resources`
resty.get('resources', query: {'foo': 'bar'});

/// you can override your api version whenever you want
/// `https://www.example.com:3000/api/v2/resources`
resty.get('resources', version: 'v2');

Response ⬅️ #

final response = await resty.get('resources');

/// status code between 200 & 300
response.isOk | response.isSuccess

/// status code between 300 & 400
response.isRedirect

/// status code between 400 & 500
response.isClientError

/// status code >= 500
response.isServerError

/// get body
response.body

/// auto convert body to json
response.json

Authentication 🔒 #

Basic Auth 🔑 #

final resty = const Resty(
  secure: true,
  auth: BasicAuth(
    username: 'postman',
    password: 'password',
  ),
  host: 'postman-echo.com'
);

Resty ❤️ Flutter #

You can use any service locator to access resty globally. For this example we're using get_it.

// models/todo.dart
class Todo {
  final int id;
  final String title;
  final bool compeleted;

  Todo({this.id, this.title, this.compeleted});

  factory Todo.fromJson(Map<String, dynamic> item) => Todo(
        id: item['id'],
        title: item['title'],
        compeleted: item['completed'],
      );

  static List<Todo> fromJsonList(List<dynamic> items) =>
      items.map((item) => Todo.fromJson(item)).toList();
}

// services/todo_service.dart
class TodoService {
  final resty = locator<Resty>();

  Future<List<Todo>> get all async {
    final response = await resty.get('todos');

    if (response.isOk) {
      return Todo.fromJsonList(response.json);
    }

    return [];
  }
}

// locator.dart
final locator = GetIt.instance;

void setupLocator() {
  locator.registerLazySingleton(
    () => const Resty(
        secure: true,
        host: 'jsonplaceholder.typicode.com',
        path: 'todos',
    ),
  );

  locator.registerLazySingleton(() => TodoService());
}

Then simply use

setupLocator();
final todos = locator<TodoService>().all;
print('${todos.length} todos found!');

Check full example #

4
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A simple, light and useful http wrapper.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on resty