List<String> findPathParameters(String path) { return RegExp(r':([\d\w_]+)').allMatches(path).map((m) => m[1]!).toList(); }