Data constructor

Data({
  1. int? count,
  2. String? dateFrom,
  3. String? dateTo,
  4. String? total,
  5. String? transactionType,
})

Implementation

Data(
    {this.count,
      this.dateFrom,
      this.dateTo,
      this.total,
      this.transactionType});