Files
FlutterUnit/lib/views/components/permanent/code/language/language.dart
2021-01-24 08:10:16 +08:00

18 lines
313 B
Dart

/// create by 张风捷特烈 on 2021/1/21
/// contact me by email 1981462002@qq.com
/// 说明:
abstract class Language {
final String name;
const Language(this.name);
bool containsKeywords(String word);
bool containsInTypes(String word);
List<String> get keywords;
List<String> get inTypes;
}