Paging constructor

Paging({
  1. String? cursor,
  2. required bool more,
})

Implementation

Paging({
  this.cursor,
  required this.more,
});