PaymentResponse constructor

PaymentResponse({
  1. bool? success,
  2. String? message,
  3. String? transactionId,
})

Implementation

PaymentResponse({
  this.success,
  this.message,
  this.transactionId,
});