avoid_type_to_string
避免
此规则从 Dart 2.12 开始可用。
详情
#**请**避免调用
错误示例
dart
void bar(Object other) {
if (other.runtimeType.toString() == 'Bar') {
doThing();
}
}
Object baz(Thing myThing) {
return getThingFromDatabase(key: myThing.runtimeType.toString());
}
正确示例
dart
void bar(Object other) {
if (other is Bar) {
doThing();
}
}
class Thing {
String get thingTypeKey => ...
}
Object baz(Thing myThing) {
return getThingFromDatabase(key: myThing.thingTypeKey);
}
用法
#要启用 avoid_type_to_string
规则,请在 analysis_options.yaml
文件中的**linter > rules**下添加 avoid_type_to_string
analysis_options.yaml
yaml
linter:
rules:
- avoid_type_to_string
除非另有说明,否则本网站上的文档反映的是 Dart 3.5.3。页面上次更新于 2024-07-03。 查看源代码 或 报告问题。