omise_flutter 0.1.2 omise_flutter: ^0.1.2 copied to clipboard
A package for integrating to Omise REST API. It targets only for a client-side usage to create a token, create a source and retrieve a capability of your account.
omise_flutter #
A third-party Flutter package for integrating with Omise API
Installation #
More information: https://pub.dev/packages/omise_flutter
- Add this to your package's pubspec.yaml file:
dependencies:
omise_flutter: ^0.1.0
- Install it from the command
flutter pub get
- Import it
import 'package:omise_flutter/omise_flutter.dart';
Usage #
Create a token #
create(String name, String number, String expirationMonth,
String expirationYear, String securityCode,
{String city,
String country,
String postalCode,
String state,
String street1,
String street2,
String phoneNumber})
Usage
OmiseFlutter omise = OmiseFlutter(YOUR_PUBLIC_KEY);
final response = await omise.token.create("John Doe", "4242424242424242", "12", "2020", "123");
Create a source #
create(int amount, String currency, String type,
{String barcode,
String email,
int installmentTerm,
String name,
String storeId,
String storeName,
String terminalId,
String phoneNumber,
bool zeroInterestInstallments})
Usage
OmiseFlutter omise = OmiseFlutter(YOUR_PUBLIC_KEY);
final response = await omise.source.create(10000, "thb", "internet_banking_bay");
Retrieve a capability #
retrieve()
Usage
OmiseFlutter omise = OmiseFlutter(YOUR_PUBLIC_KEY);
final response = await omise.capability.retrieve();