ItemView.withPageSizeAndOffset constructor

ItemView.withPageSizeAndOffset(
  1. int pageSize,
  2. int offset
)
Initializes a new instance of the The maximum number of elements the search operation should return. The offset of the view from the base point.

Implementation

ItemView.withPageSizeAndOffset(int pageSize, int offset)
    : super.withPageSizeAndOffset(pageSize, offset) {
  this.Offset = offset;
}