SherlockCompletion constructor

SherlockCompletion({
  1. required String where,
  2. required dynamic elements,
})

Creates a new SherlockCompletions. Basically the given elements are the same given to the Sherlock object which might have been built before for researches.

To optimise, the elements could contain only the columns where.

Implementation

SherlockCompletion({required this.where, required elements}) : sherlock = Sherlock(elements: elements);