noebs 0.0.5 copy "noebs: ^0.0.5" to clipboard
noebs: ^0.0.5 copied to clipboard

A new Flutter package project.

noebs #

A simple way to integrate with noebs apis and add payment to your applications.

How to use noebs dart sdk #

import 'package:noebs/noebs.dart';
import 'package:noebs/types.dart';

final payment = Noebs(
    apiKey: "1233232",
    pan: "912341234421234112",
    ipin: "1234",
    expDate: "2402",
    client: client);
    
// payment.client = client;

//TODO fix the ipin block shit
final i = await payment.init();

if (i is Successful) {
    // successful transaction
}else if (i is PaymentError) {
    // process payment errors here
    print(i.getErrorMessage());
}

// you can also make a new payment request, through the same api

final payment = Noebs(
    apiKey: "1233232",
    pan: "912341234421234112",
    ipin: "1234",
    expDate: "2402",
    client: client);

final i = await payment.init() // initiale the library here

final res = await payment.specialPayment(32.32); 

// check and handle errors here

For more information go to our api docs website.

3
likes
20
pub points
0%
popularity

Publisher

verified publishernoebs.dev

A new Flutter package project.

License

MIT (LICENSE)

Dependencies

flutter, http, intl, ipin, uuid

More

Packages that depend on noebs