FunDef constructor
Implementation
factory FunDef({
$core.String? def,
$0.Value? value,
$core.Iterable<$core.String>? with_3,
Path? path,
}) {
final $result = create();
if (def != null) {
$result.def = def;
}
if (value != null) {
$result.value = value;
}
if (with_3 != null) {
$result.with_3.addAll(with_3);
}
if (path != null) {
$result.path = path;
}
return $result;
}