PaymentRequest constructor
PaymentRequest({
- required String? version,
- required String? cid,
- required String? currency,
- required String? amount,
- required String? cartid,
- required String? signatureKey,
- String? callbackUrl,
- String? returnUrl,
- String? email,
- String? mobileNo,
- String? firstName,
- String? lastName,
- String? productDescription,
- String? billingStreet,
- String? billingPostCode,
- String? billingCity,
- String? billingState,
- String? billingCountry,
- required bool isProd,
- PaymentCallback? paymentCallback,
Implementation
PaymentRequest(
{required this.version,
required this.cid,
required this.currency,
required this.amount,
required this.cartid,
required this.signatureKey,
this.callbackUrl,
this.returnUrl,
this.email,
this.mobileNo,
this.firstName,
this.lastName,
this.productDescription,
this.billingStreet,
this.billingPostCode,
this.billingCity,
this.billingState,
this.billingCountry,
required this.isProd,
this.paymentCallback});