fs method

String fs(
  1. String _s,
  2. String caller,
  3. List<String> _wordList
)

Not used. Find String

Implementation

String fs(String _s, String caller, List<String> _wordList) {
  String rMsg = '------';
  if (countStrInList(_wordList, _s) > 0) {
    rMsg = _s;
  }
  return rMsg;
}