IndicesObjectBuilder constructor

IndicesObjectBuilder({
  1. List<int>? data,
  2. int? count,
  3. IndexType? type,
})

Implementation

IndicesObjectBuilder({List<int>? data, int? count, IndexType? type})
  : _data = data,
    _count = count,
    _type = type;