ExprIn constructor

const ExprIn({
  1. required Expr left,
  2. required Expr right,
})

Implementation

const ExprIn({
  required super.left,
  required super.right,
});