Eval_Definition constructor

Eval_Definition({
  1. String? ident,
  2. Iterable<String>? args,
  3. Expr? body,
})

Implementation

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