PaginatedListUser constructor

PaginatedListUser({
  1. required int pageSize,
  2. required int totalSize,
  3. List<User> rows = const [],
  4. PaginatedDocumentKeyAndIdPairObject? nextKeyPair,
})

Returns a new PaginatedListUser instance.

Implementation

PaginatedListUser({
  required this.pageSize,
  required this.totalSize,
  this.rows = const [],
  this.nextKeyPair,
});