multiple_redirecting_constructor_invocations
Constructors can have only one 'this' redirection, at most.
Description
#The analyzer produces this diagnostic when a constructor redirects to more
than one other constructor in the same class (using this
).
Example
#The following code produces this diagnostic because the unnamed
constructor in C
is redirecting to both this.a
and this.b
:
dart
class C {
C() : this.a(), this.b();
C.a();
C.b();
}
Common fixes
#Remove all but one of the redirections:
dart
class C {
C() : this.a();
C.a();
C.b();
}
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。