DecryptedPaginatedListServiceDto constructor
DecryptedPaginatedListServiceDto({
- required int pageSize,
- required int totalSize,
- List<
DecryptedServiceDto> rows = const [], - PaginatedDocumentKeyIdPairObject? nextKeyPair,
Returns a new DecryptedPaginatedListServiceDto instance.
Implementation
DecryptedPaginatedListServiceDto({
required this.pageSize,
required this.totalSize,
this.rows = const [],
this.nextKeyPair,
});