CheckoutRequestModel constructor
CheckoutRequestModel({
- required String token,
- required String storeID,
- required String prefix,
- required String currency,
- required double amount,
- required String orderID,
- double? discountAmount,
- double? discountPercentage,
- required String customerName,
- required String customerPhoneNumber,
- String? customerEmail,
- required String customerAddress,
- String? customerCity,
- String? customerState,
- String? customerPostcode,
- String? customerCountry,
- String? returnURL,
- String? cancelURL,
- String? clientIP,
- String? value1,
- String? value2,
- String? value3,
- String? value4,
Implementation
CheckoutRequestModel({
required this.token,
required this.storeID,
required this.prefix,
required this.currency,
required this.amount,
required this.orderID,
this.discountAmount,
this.discountPercentage,
required this.customerName,
required this.customerPhoneNumber,
this.customerEmail,
required this.customerAddress,
this.customerCity,
this.customerState,
this.customerPostcode,
this.customerCountry,
this.returnURL,
this.cancelURL,
this.clientIP,
this.value1,
this.value2,
this.value3,
this.value4,
});