DecryptedPaginatedListPatientDto constructor

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

Returns a new DecryptedPaginatedListPatientDto instance.

Implementation

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