features method

void features(
  1. List<String> foldersOrFiles
)

Add a List<String> that are locations of folders that contain feature files (recursed), specific paths to feature files or a mix of the two

Implementation

void features(List<String> foldersOrFiles) {
  _features.addAll(foldersOrFiles);
}