Ctransactions constructor

Ctransactions(
  1. {int? total,
  2. int? perPage,
  3. int? currentPage,
  4. int? lastPage,
  5. String? nextPageUrl,
  6. String? prevPageUrl,
  7. int? from,
  8. int? to,
  9. required List<Datum> data}
)

Implementation

Ctransactions({
  this.total,
  this.perPage,
  this.currentPage,
  this.lastPage,
  this.nextPageUrl,
  this.prevPageUrl,
  this.from,
  this.to,
  required this.data,
});