OptionQuery constructor

OptionQuery({
  1. List<SortConfig> sortOptions = const <SortConfig>[],
  2. int? pageSize,
  3. String? cursor,
})

Creates a OptionQuery with the given sortOptions, a pageSize and a cursor (all optional).

Implementation

OptionQuery(
    {this.sortOptions = const <SortConfig>[], this.pageSize, this.cursor});