Callable constructor

  1. @Deprecated('Use `Callable.function` instead.')
Callable(
  1. String name,
  2. String arguments,
  3. Value callback(
    1. List<Value> arguments
    )
)

Implementation

@Deprecated('Use `Callable.function` instead.')
factory Callable(String name, String arguments,
        Value callback(List<Value> arguments)) =>
    Callable.function(name, arguments, callback);