call method

  1. @override
Object? call(
  1. Interpreter interpreter,
  2. List<Object?> arguments,
  3. Map<Symbol, Object?> namedArguments
)
override

Implementation

@override
Object? call(Interpreter interpreter, List<Object?> arguments,
    Map<Symbol, Object?> namedArguments) {
  if (arguments.first is TypedDataListIns) {
    var data = (arguments.first as TypedDataListIns).data;
    sink.add(data);
  } else {
    sink.add(arguments.first);
  }
  return null;
}