Data constructor

Data({
  1. String? id,
  2. String? subscriberId,
  3. int? amount,
  4. String? type,
  5. String? purpose,
  6. String? status,
  7. bool? confirmed,
  8. Null? transactionId,
  9. Null? transactionHash,
  10. Null? meta,
  11. String? provider,
  12. String? createdAt,
  13. String? updatedAt,
})

Implementation

Data(
    {this.id,
    this.subscriberId,
    this.amount,
    this.type,
    this.purpose,
    this.status,
    this.confirmed,
    this.transactionId,
    this.transactionHash,
    this.meta,
    this.provider,
    this.createdAt,
    this.updatedAt});