PaylinkGatewayOrderRequest constructor

PaylinkGatewayOrderRequest({
  1. required double amount,
  2. required String orderNumber,
  3. required String callBackUrl,
  4. required String clientEmail,
  5. required String clientName,
  6. required String clientMobile,
  7. required String note,
  8. required String cancelUrl,
  9. required List<PaylinkProduct> products,
  10. required List<String> supportedCardBrands,
  11. required String currency,
  12. required String smsMessage,
  13. required bool displayPending,
  14. dynamic receivers,
  15. dynamic partnerPortion,
  16. dynamic metadata,
})

Implementation

PaylinkGatewayOrderRequest({
  required this.amount,
  required this.orderNumber,
  required this.callBackUrl,
  required this.clientEmail,
  required this.clientName,
  required this.clientMobile,
  required this.note,
  required this.cancelUrl,
  required this.products,
  required this.supportedCardBrands,
  required this.currency,
  required this.smsMessage,
  required this.displayPending,
  this.receivers,
  this.partnerPortion,
  this.metadata,
});