factory Elem({ Expr? get, Expr? from, }) { final $result = create(); if (get != null) { $result.get = get; } if (from != null) { $result.from = from; } return $result; }