isDartSourceCodeFile method

bool isDartSourceCodeFile()

Implementation

bool isDartSourceCodeFile() {
  return path.endsWith('.dart') &&
      !path.endsWith('.g.dart') &&
      !path.endsWith('.mocks.dart');
}