containsTone method

bool containsTone(
  1. String text
)

Implementation

bool containsTone(String text) {
  return _toneRegexp.hasMatch(text);
}