isGt function
Checks whether the given value is greater than max
Implementation
IEskValidator isGt(num min) =>
isType<num>() & validator((value) => value > min, (value) => 'greater than $min');
Checks whether the given value is greater than max
IEskValidator isGt(num min) =>
isType<num>() & validator((value) => value > min, (value) => 'greater than $min');