This is a client package for the EasyApp API from the Very Easy Framework.

More information about the framework can be found here.

Features

  • x Authentication (login, logout, register, forgot password, reset password)
  • x Session storing and management

Getting started

  1. Make sure you have an server running EasyApp API.
  2. Add this package to your project.
dependencies:
  vef_api: ^0.0.1

Usage

Create an instance of the EasyApi class and pass the apiHost parameter with the URL of the API.

If you don't pass the apiHost parameter, the default value will be http://localhost:8000 for development purposes.

import 'package:vef_api/easy_api.dart';

EasyApi api = EasyApi(apiHost: 'https://my.easyapp.com');

await api.boot();

Libraries

vef_api