isDartFile property

bool get isDartFile

Checks if this file is a Dart source file.

Implementation

bool get isDartFile {
  return fileName.endsWith('.dart');
}