PaymentRequest constructor

PaymentRequest({
  1. required int orderId,
  2. required int paymentAmountRial,
  3. String userFullName = '',
  4. String userPhone = '',
  5. String userMail = '',
  6. String paymentDescription = '',
  7. required String callBackUrl,
})

Implementation

PaymentRequest(
    {required this.orderId,
    required this.paymentAmountRial,
    this.userFullName = '',
    this.userPhone = '',
    this.userMail = '',
    this.paymentDescription = '',
    required this.callBackUrl});