PaymentUIResultTransaction constructor

PaymentUIResultTransaction({
  1. required String transactionCode,
  2. required String methodCode,
  3. required int amount,
  4. required bool isSuccess,
  5. String? message,
})

Implementation

PaymentUIResultTransaction({
  required this.transactionCode,
  required this.methodCode,
  required this.amount,
  required this.isSuccess,
  this.message,
});