Last updated:
0 purchases
moyasar payment
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
copied to clipboard
📱 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'
copied to clipboard
🔖 Usage #
Import moyasar_payment.dart
import 'package:moyasar_payment/moyasar_payment.dart';
copied to clipboard
Import paymodel.dart
import 'package:moyasar_payment/model/paymodel.dart';
copied to clipboard
Integrate Apple Pay
Import applepaymodel.dart
import 'package:moyasar_payment/model/source/applepaymodel.dart';
copied to clipboard
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);
}
copied to clipboard
Integrate Credit Card
Import creditcardmodel.dart
import 'package:moyasar_payment/model/source/creditcardmodel.dart';
copied to clipboard
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());
copied to clipboard
Integrate STC Pay
Import stcpaymodel.dart
import 'package:moyasar_payment/model/source/stcpaymodel.dart';
copied to clipboard
PayModel res = await MoyasarPayment().stcPay(
amount: 100.0,
phoneNumber: 'phoneNumber',
publishableKey: 'publishable_key',
description: 'description');
STCPayModel stcPayModel = STCPayModel.fromJson(res.source);
print(stcPayModel.toJson())
copied to clipboard
STC Pay OTP Verification
var resdata = await MoyasarPayment().StcPayOtp(
otpValue: 'otp Value',
transactionUrl: 'transaction_url';
copied to clipboard
❤️ 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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.