ExprGreaterThan constructor

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

Implementation

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