SimplePagedResultsControl constructor

SimplePagedResultsControl({
  1. bool isCritical = false,
  2. int size = 100,
  3. List<int> cookie = const <int>[],
})

Implementation

SimplePagedResultsControl(
    {bool isCritical = false,
    this.size = 100,
    List<int> cookie = const <int>[]})
    : _cookie = cookie {
  if (isCritical) {
    // todo: refactor superclass - this should be immutable
    this.isCritical = isCritical;
  }
}