bool matchLiveInTitle(String title) { RegExp regex = RegExp(r'\blive\b'); Iterable<Match> matches = regex.allMatches(title.toLowerCase()); return matches.isNotEmpty; }