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