payable_ipg 1.0.6 copy "payable_ipg: ^1.0.6" to clipboard
payable_ipg: ^1.0.6 copied to clipboard

outdated

PAYable IPG

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:payable_ipg/payable_ipg.dart';

// Initialization PAYable IPG Client
PAYableIPGClient ipgClient = PAYableIPGClient(
  merchantKey: "A75BCD8EF30E529A",
  merchantToken: "B8727C74D29E210F9A297B65690C0140",
  refererUrl: "https://www.sandboxmerdev.payable.lk",
  logoUrl: "https://i.imgur.com/l21F5us.png",
  environment: IPGEnvironment.sandbox, // optional
);

PAYableIPG payableIPG = PAYableIPG(
  ipgClient: ipgClient,
  amount: 100.45,
  currencyCode: "LKR",
  orderDescription: "Netflix",
  customerFirstName: "Aslam",
  customerLastName: "Kasun",
  customerEmail: "test@org.lk",
  customerMobilePhone: "0777123456",
  billingAddressStreet: "Hill Street",
  billingAddressCity: "Dehiwala",
  billingAddressCountry: "LK",
  billingAddressPostcodeZip: "10350",
  billingAddressStateProvince: "Western",
  shippingContactFirstName: "Aslam",
  shippingContactLastName: "Kasun",
  shippingContactEmail: "test@org.lk",
  shippingContactMobilePhone: "0777123456",
  shippingAddressStreet: "Hill Street",
  shippingAddressCity: "Dehiwala",
  shippingAddressCountry: "LK",
  shippingAddressPostcodeZip: "10350",
  shippingAddressStateProvince: "Western",
  notificationUrl: "https://us-central1-payable-mobile.cloudfunctions.net/ipg/request-test",
  onPaymentCompleted: (data) {
    Fluttertoast.showToast(msg: "onPaymentCompleted: $data");
  },
  onPaymentCancelled: () {
    Fluttertoast.showToast(msg: "onPaymentCancelled");
  },
  onPaymentError: (data) {
    Fluttertoast.showToast(msg: "onPaymentError: $data");
  },
);

PAYableIPGSession payableIPGSession = PAYableIPGSession(
  uid: "969077C7-EBB5-428A-9F09-FF195560F200",
  onPaymentCompleted: (data) {
    Fluttertoast.showToast(msg: "onPaymentCompleted: $data");
  },
  onPaymentCancelled: () {
    Fluttertoast.showToast(msg: "onPaymentCancelled");
  },
  onPaymentError: (data) {
    Fluttertoast.showToast(msg: "onPaymentError: $data");
  },
  environment: IPGEnvironment.sandbox,
);

void getStatus(String uid, String resultIndicator) async {
  var data = await ipgClient.getStatus(uid, resultIndicator);
  print(data);
}

void main() {
  runApp(
    MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text("PAYable IPG Demo"),
        ),
        body: payableIPG,
      ),
    ),
  );
}