Info constructor

Info(
  1. {required int count,
  2. required int pages,
  3. String? next = '',
  4. String? prev = ''}
)

Implementation

Info({
  required this.count,
  required this.pages,
  this.next = '',
  this.prev = '',
});