This is a client package for the EasyApp API from the Very Easy Framework.
More information about the framework can be found here.
Features
xAuthentication (login, logout, register, forgot password, reset password)xSession storing and management
Getting started
- Make sure you have an server running EasyApp API.
- 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();