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