EasyPaymobResponse constructor

EasyPaymobResponse({
  1. String? transactionID,
  2. required bool success,
  3. required bool pending,
  4. String? responseCode,
  5. String? message,
  6. String? type,
  7. int? billReference,
})

Implementation

EasyPaymobResponse({
  this.transactionID,
  required this.success,
  required this.pending,
  this.responseCode,
  this.message,
  this.type,
  this.billReference,
});