DecryptedPaginatedListServiceDto constructor

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

Returns a new DecryptedPaginatedListServiceDto instance.

Implementation

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