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

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

Moyasar Flutter Plugin #

🚀 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

📱 IOS version #

⚠️ Make sure that the IOS version is set to 12.2 in your app's ios/PodFile

diff --git a/ios/PodFile b/ios/PodFile
-	 # platform :ios, '11' 
+	 platform :ios, '12.2' 

🔖 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: 123, 
    expiryManth: 12, 
    expiryYear: 2025 or 25, 
    callbackUrl: 'https://example.com/orders');

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

Integrate STC Pay

Import stcpaymodel.dart

import 'package:moyasar_payment/model/source/stcpaymodel.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.

11
likes
120
pub points
68%
popularity

Publisher

verified publishermohammed-dev.com

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

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on moyasar_payment