FastpayResult constructor

FastpayResult({
  1. bool? isSuccess,
  2. String? transactionStatus,
  3. String? transactionId,
  4. String? orderId,
  5. String? paymentAmount,
  6. String? paymentCurrency,
  7. String? payeeName,
  8. String? payeeMobileNumber,
  9. String? paymentTime,
  10. String? errorMessage,
})

Implementation

FastpayResult({
  this.isSuccess,
  this.transactionStatus,
  this.transactionId,
  this.orderId,
  this.paymentAmount,
  this.paymentCurrency,
  this.payeeName,
  this.payeeMobileNumber,
  this.paymentTime,
  this.errorMessage,
});