greaterThan method
allow only values > value
value
the lower limit
Implementation
IntType greaterThan(int value) {
test<int>(
type: int,
name: "greaterThan",
params: {
"greaterThan": value
},
check: (obj) => obj > value,
);
return this;
}