beyonic_flutter 0.1.1 copy "beyonic_flutter: ^0.1.1" to clipboard
beyonic_flutter: ^0.1.1 copied to clipboard

Flutter package to use Beyonic APIs

Beyonic Flutter Library #

Flutter package for using the Beyonic APIs

Using this package #

You can call the various objects as outlined below:

import 'package:beyonic_flutter/beyonicservice.dart';

// load list of payments
Future List<Payment> _payments =  BeyonicService(apiKey: your_api_key).load(Payment.all, offset: 0);

// load single payment
Future <Payment> _payment =  BeyonicService(apiKey: your_api_key).load(Payment.single);

// create payment
Future <Payment> _payment =  BeyonicService(apiKey: your_api_key).create(Payment.create, params);

// load list of contacts
Future <Contact> _contact =  BeyonicService(apiKey: your_api_key).load(Contact.all, offset: 0);

1
likes
10
pub points
21%
popularity

Publisher

unverified uploader

Flutter package to use Beyonic APIs

Homepage

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on beyonic_flutter