PaymobResponse constructor

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

Implementation

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