PaginatedListVmpGroupDto constructor

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

Returns a new PaginatedListVmpGroupDto instance.

Implementation

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