PaymentPaymobResponse constructor

PaymentPaymobResponse({
  1. required bool success,
  2. String? transactionID,
  3. String? responseCode,
  4. String? message,
})

Implementation

PaymentPaymobResponse({
  required this.success,
  this.transactionID,
  this.responseCode,
  this.message,
});