NoSuchMethodError.withInvocation constructor

NoSuchMethodError.withInvocation(Object receiver, 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. It should not be null.

Implementation

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