setup method

void setup(
  1. String historyKey,
  2. int limit,
  3. dynamic _textEditingController, {
  4. List<String>? lockItems,
})

Implementation

void setup(String historyKey, int limit, _textEditingController, {List<String>? lockItems}) {
  this._historyKey = historyKey;
  this._limit = limit;
  this._lockItems = lockItems;
  this._textEditingController = _textEditingController;
  this._init();
}