NoSuchMethodError 类
在无效函数或方法调用时抛出错误。
当动态函数或方法调用向被调用的函数提供了无效的类型参数或参数列表时抛出。对于非动态调用,静态类型检查会阻止此类无效参数。
还会由 Object.noSuchMethod 的默认实现抛出。
构造函数
- NoSuchMethodError.withInvocation(Object? receiver, Invocation invocation)
- 创建一个对应于失败方法调用的 NoSuchMethodError。工厂
属性
- hashCode → int
- 此对象的哈希值。no setterinherited
- runtimeType → Type
- 对象的运行时类型的表示。no setterinherited
- stackTrace → StackTrace?
- 此错误首次抛出时的堆栈跟踪。no setterinherited
方法
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时调用。inherited
-
toString(
) → String - 此对象的字符串表示。override
运算符
-
operator ==(
Object other) → bool - 相等运算符。inherited