PaginatedListPatient constructor

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

Returns a new PaginatedListPatient instance.

Implementation

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