List<String> get keys { final matches = _regex.allMatches(format); return matches .map((e) => e.group(1)) .where((element) => element != null) .map((e) => e!) .toList(); }