Invocation.method 构造函数

Invocation.method(
  1. Symbol memberName,
  2. Iterable<Object?>? positionalArguments,
  3. [Map<Symbol, Object?>? namedArguments]
)

创建一个与方法调用对应的调用。

方法调用没有类型参数。如果省略了命名参数,则默认没有命名参数。

实现

@pragma("wasm:entry-point")
factory Invocation.method(
        Symbol memberName, Iterable<Object?>? positionalArguments,
        [Map<Symbol, Object?>? namedArguments]) =>
    _Invocation.method(memberName, null, positionalArguments, namedArguments);