Expr_Path_Pos constructor

Expr_Path_Pos({
  1. Int64? index,
  2. 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;
}