execute method

Future<_Feature?> execute()

Returns a Future to a fully populated Feature, from the Gherkin feature statements in contents, which is a List of lines.

Implementation

Future<_Feature?> execute() async {
  return _GherkinParser().parse(contents, filePath: filePath);
}