isCorrectFileLang method

bool isCorrectFileLang()

Implementation

bool isCorrectFileLang() {
  final regExp = RegExp(r'_lang.dart$');
  return regExp.hasMatch(this);
}