omise_flutter 0.1.6 copy "omise_flutter: ^0.1.6" to clipboard
omise_flutter: ^0.1.6 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

  1. Add this to your package's pubspec.yaml file:
dependencies:
  omise_flutter: ^0.1.6
  1. Install it from the command
flutter pub get
  1. 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();
13
likes
110
pub points
74%
popularity

Publisher

verified publisherkeerati.co

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.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

crypto, flutter, http

More

Packages that depend on omise_flutter