invokeMethodWith<R> method
R?
invokeMethodWith<R>(])
Invokes the method for methodName
with the associated object
.
Implementation
R? invokeMethodWith<R>(
String methodName, O object, Iterable<Object?>? positionalArguments,
[Map<Symbol, Object?>? namedArguments]) {
var method = this.method(methodName, object);
return method?.invoke(positionalArguments, namedArguments);
}