vef_api 0.0.1
vef_api: ^0.0.1 copied to clipboard
A flutter client for the VeryEasy Framework API
This is a client package for the EasyApp API from the Very Easy Framework.
More information about the framework can be found here.
Features #
- ✅ Authentication (login, logout, register, forgot password, reset password)
- ✅ Session 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();