NoSuchMethodError.withInvocation constructor

NoSuchMethodError.withInvocation(
  1. Object? receiver,
  2. Invocation invocation
)

Create a NoSuchMethodError corresponding to a failed method call.

The receiver is the receiver of the method call. That is, the object on which the method was attempted called.

The invocation represents the method call that failed.

Implementation

external NoSuchMethodError.withInvocation(
    Object? receiver, Invocation invocation);

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-core/NoSuchMethodError/NoSuchMethodError.withInvocation.html