Expr_Call constructor

Expr_Call({
  1. Expr? target,
  2. String? function,
  3. Iterable<Expr>? args,
})

Implementation

factory Expr_Call({
  Expr? target,
  $core.String? function,
  $core.Iterable<Expr>? args,
}) {
  final result = create();
  if (target != null) result.target = target;
  if (function != null) result.function = function;
  if (args != null) result.args.addAll(args);
  return result;
}