isGte function
Checks whether the given value is greater or equal to max
Implementation
IEskValidator isGte(num min) =>
isType<num>() & ((isGt(min) | isEq(min)) > "greater than or equal to $min");
Checks whether the given value is greater or equal to max
IEskValidator isGte(num min) =>
isType<num>() & ((isGt(min) | isEq(min)) > "greater than or equal to $min");