PaymentPaymobResponse constructor

PaymentPaymobResponse({
  1. required bool success,
  2. String? transactionID,
  3. String? responseCode,
  4. int? amountCents,
  5. String? message,
  6. String? dataMessage,
})

Implementation

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