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