apso_flutter_sdk 0.1.3 copy "apso_flutter_sdk: ^0.1.3" to clipboard
apso_flutter_sdk: ^0.1.3 copied to clipboard

A Dart/Flutter SDK that replicates the functionality of @apso/sdk.

pub package

Apso Flutter SDK #

A Dart/Flutter SDK clone of @apso/sdk for seamless backend CRUD operations.

Features #

  • Fluent entity query builder
  • Advanced filters with operators (e.g., $gt, $in, $eq)
  • Pagination, field selection, and sorting
  • CRUD operations (getOne, create, update, delete)
  • Retry logic with interceptors
  • Dio-based HTTP client

Installation #

dependencies:
  apso_flutter_sdk:
    git:
      url: https://github.com/yourusername/apso_flutter_sdk.git

Usage #

final client = ApsoClient(baseUrl: 'https://api.example.com', apiKey: 'YOUR_API_KEY');

final users = await client.entity('users')
    .where({'status': {'\$eq': 'active'}})
    .limit(10)
    .get();

License #

MIT

0
likes
120
points
72
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Dart/Flutter SDK that replicates the functionality of @apso/sdk.

Repository (GitHub)

License

MIT (license)

Dependencies

dio

More

Packages that depend on apso_flutter_sdk