BushaPaySuccess constructor

const BushaPaySuccess({
  1. required String paymentId,
  2. required String status,
  3. String? sourceAmount,
  4. String? sourceCurrency,
  5. String? targetAmount,
  6. String? targetCurrency,
  7. String? requestedAmount,
  8. String? currency,
  9. Map<String, dynamic>? rate,
  10. Map<String, dynamic>? merchantInfo,
  11. Map<String, dynamic>? timeline,
  12. Map<String, dynamic>? rawData,
})

Implementation

const BushaPaySuccess({
  required this.paymentId,
  required this.status,
  this.sourceAmount,
  this.sourceCurrency,
  this.targetAmount,
  this.targetCurrency,
  this.requestedAmount,
  this.currency,
  this.rate,
  this.merchantInfo,
  this.timeline,
  this.rawData,
});