FawryResponse constructor

FawryResponse({
  1. String? transactionID,
  2. DateTime? expiryDate,
  3. String? cardToken,
  4. DateTime? creationDate,
  5. String? lastFourDigits,
  6. Map<String, dynamic>? customParam,
  7. String? errorMessage,
})

Implementation

FawryResponse({
  this.transactionID,
  this.expiryDate,
  this.cardToken,
  this.creationDate,
  this.lastFourDigits,
  this.customParam,
  this.errorMessage,
});