watchDartSourceCodeFiles method
Implementation
Stream<FileSystemEvent> watchDartSourceCodeFiles() {
return watch(recursive: true).where(
(e) => e.path.endsWith('.dart') && Constants.partFileExtensionRegex.allMatches(e.path).isEmpty,
);
}
Stream<FileSystemEvent> watchDartSourceCodeFiles() {
return watch(recursive: true).where(
(e) => e.path.endsWith('.dart') && Constants.partFileExtensionRegex.allMatches(e.path).isEmpty,
);
}