Expr_Path_Pos constructor
Expr_Path_Pos({
- Int64? index,
- String? key,
Implementation
factory Expr_Path_Pos({
$fixnum.Int64? index,
$core.String? key,
}) {
final $result = create();
if (index != null) {
$result.index = index;
}
if (key != null) {
$result.key = key;
}
return $result;
}