undefined_operator
The operator '{0}' isn't defined for the type '{1}'.
Description
#The analyzer produces this diagnostic when a user-definable operator is invoked on an object for which the operator isn't defined.
Example
#The following code produces this diagnostic because the class C
doesn't
define the operator +
:
dart
class C {}
C f(C c) => c + 2;
Common fixes
#If the operator should be defined for the class, then define it:
dart
class C {
C operator +(int i) => this;
}
C f(C c) => c + 2;
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。