contains method

bool contains(
  1. String query
)

Implementation

bool contains(String query) {
  return _testPropBy(title, query) ||
      _testPropBy(subtitle, query) ||
      _testPropBy(group, query);
}