ApiResponse constructor

ApiResponse({
  1. int? total,
  2. required int pageSize,
  3. required int page,
  4. String? cursor,
  5. required List<Transaction> result,
})

Implementation

ApiResponse({
  this.total,
  required this.pageSize,
  required this.page,
  this.cursor,
  required this.result,
});