watchDartSourceCodeFiles method

Stream<FileSystemEvent> watchDartSourceCodeFiles()

Implementation

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