SherlockCompletion constructor
SherlockCompletion({
- required String where,
- 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);