unnecessary_late
Unnecessary 'late' modifier.
Description
#The analyzer produces this diagnostic when a top-level variable or static
field with an initializer is marked as late
. Top-level variables and
static fields are implicitly late, so they don't need to be explicitly
marked.
Example
#The following code produces this diagnostic because the static field c
has the modifier late
even though it has an initializer:
dart
class C {
static late String c = '';
}
Common fixes
#Remove the keyword late
:
dart
class C {
static String c = '';
}
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。