Data constructor

Data({
  1. String? reference,
  2. String? publicKey,
  3. dynamic amount,
  4. String? description,
  5. int? orderId,
  6. String? sbRedirectLink,
  7. String? email,
  8. String? paymentLink,
  9. String? gateway,
  10. String? status,
})

Implementation

Data({
  this.reference,
  this.publicKey,
  this.amount,
  this.description,
  this.orderId,
  this.sbRedirectLink,
  this.email,
  this.paymentLink,
  this.gateway,
  this.status,
});