searchText abstract method
Searches file contents for pattern (a regular expression). glob limits
which files are searched; context lines of surrounding text are attached.
Implementation
Future<List<TextMatch>> searchText(
String pattern, {
String? glob,
bool ignoreCase = false,
int context = 0,
int? limit,
});