findInFiles abstract method

Future<FindInFilesResult> findInFiles(
  1. Iterable<String>? inclusionSet,
  2. String query, {
  3. bool caseSensitive = false,
  4. bool matchWholeWord = false,
  5. bool regularExpression = false,
  6. bool trim = true,
})

Searches for query in files. If inclusionSet is provided, only those files are searched, otherwise all non-built-in files are searched.

Implementation

Future<FindInFilesResult> findInFiles(
  Iterable<String>? inclusionSet,
  String query, {
  bool caseSensitive = false,
  bool matchWholeWord = false,
  bool regularExpression = false,
  bool trim = true,
});