toFindWord method

dynamic toFindWord(
  1. String word
)

Implementation

toFindWord(String word ){
  findWord=word;
  print('toFindWord:${findWord}');
  if(findWord.isNotEmpty){
    notifyListeners();
  }

}