RequestResponse constructor

RequestResponse({
  1. String? fullName,
  2. String? email,
  3. String? amount,
  4. String? fee,
  5. String? chargedAmount,
  6. String? invoiceId,
  7. String? paymentMethod,
  8. String? senderNumber,
  9. String? transactionId,
  10. DateTime? date,
  11. ResponseStatus? status,
})

Implementation

RequestResponse({
  this.fullName,
  this.email,
  this.amount,
  this.fee,
  this.chargedAmount,
  this.invoiceId,
  this.paymentMethod,
  this.senderNumber,
  this.transactionId,
  this.date,
  this.status,
});