implicit_call_tearoffs
Implicit tear-off of the 'call' method.
Description
#The analyzer produces this diagnostic when an object with a call
method
is assigned to a function-typed variable, implicitly tearing off the
call
method.
Example
#The following code produces this diagnostic because an instance of
Callable
is passed to a function expecting a Function
:
dart
class Callable {
void call() {}
}
void callIt(void Function() f) {
f();
}
void f() {
callIt(Callable());
}
Common fixes
#Explicitly tear off the call
method:
dart
class Callable {
void call() {}
}
void callIt(void Function() f) {
f();
}
void f() {
callIt(Callable().call);
}
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。