PayDialog constructor

const PayDialog({
  1. required String xApiKey,
  2. required dynamic productName,
  3. required dynamic transactionAmount,
  4. required dynamic transactionCallBackUrl,
  5. required Function actionAfterProccess,
  6. required String merchandUserName,
  7. required String merchandPassword,
  8. required String sandbox,
  9. required String currency,
  10. required dynamic data,
})

Implementation

const PayDialog({
  required this.xApiKey,
  required this.productName,
  required this.transactionAmount,
  required this.transactionCallBackUrl,
  required this.actionAfterProccess,
  required this.merchandUserName,
  required this.merchandPassword,
  required this.sandbox,
  required this.currency,
  required this.data,
});