moyasar_payment 0.0.9 copy "moyasar_payment: ^0.0.9" to clipboard
moyasar_payment: ^0.0.9 copied to clipboard

Flutter library for Moyasar. Supports Apple Pay, STC Pay and Credit Card.

🚀 Installation #

This plugin is available on Pub: https://pub.dev/packages/moyasar_payment

Add this to dependencies in your app's pubspec.yaml

moyasar_payment : latest_version

🔖 Usage #

Import moyasar_payment.dart

import 'package:moyasar_payment/moyasar_payment.dart';

Import paymodel.dart

import 'package:moyasar_payment/model/paymodel.dart';

Integrate Apple Pay

Import applepaymodel.dart

import 'package:moyasar_payment/model/source/applepaymodel.dart';
var items = <String,double>{
              'Item 1': 20.0,
              'Item 2' : 80.0
            };
                          
PayModel res = await MoyasarPayment().applePay(
    amount: 100.0, 
    publishableKey: 'publishable_key', 
    applepayMerchantId: 'applepay_merchant_id', 
    paymentItems: items, 
    currencyCode: 'SAR', 
    countryCode: 'SA',
    description: 'description');

if (res.type != null) { // User Cancelled The Payment
        print(res.message);
    } else {
        ApplePayModel applePayModel = ApplePayModel.fromJson(res.source);
    
    }

Integrate Credit Card

Import creditcardmodel.dart

import 'package:moyasar_payment/model/source/creditcardmodel.dart';
PayModel res = await MoyasarPayment().creditCard(
    description :'description', 
    amount: 100.0, 
    publishableKey: 'publishable_key', 
    cardHolderName: 'cardHolderName', 
    cardNumber: 'cardNumber', 
    cvv: 'cvv', 
    expiryManth: 'expiryDate_manth', 
    expiryYear: 'expiryDate_yar', 
    callbackUrl: 'https://example.com/orders');

CreditcardModel creditcardModel = CreditcardModel.fromJson(res.source);
    print(creditcardModel.toJson());

Integrate STC Pay

Import creditcardmodel.dart

import 'package:moyasar_payment/model/source/creditcardmodel.dart';
PayModel res = await MoyasarPayment().stcPay(
    amount: 100.0, 
    phoneNumber: 'phoneNumber', 
    publishableKey: 'publishable_key',
    description: 'description');

STCPayModel stcPayModel = STCPayModel.fromJson(res.source);
            print(stcPayModel.toJson())

STC Pay OTP Verification
var resdata = await MoyasarPayment().StcPayOtp(
    otpValue: 'otp Value',
    transactionUrl: 'transaction_url';

❤️ Found this project useful? #

If you found this project useful, then please consider giving it a ⭐ on Github and sharing it with your friends via social media.


:🪄: Contributing, :disappointed: Issues and :bug: Bug Reports

The project is open to public contribution. Please feel very free to contribute. Experienced an issue or want to report a bug? Please, report it here. Remember to be as descriptive as possible.

13
likes
0
pub points
59%
popularity

Publisher

verified publishermohammed-dev.com

Flutter library for Moyasar. Supports Apple Pay, STC Pay and Credit Card.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on moyasar_payment