isGt function

IEskValidator isGt(
  1. num min
)

Checks whether the given value is greater than max

Implementation

IEskValidator isGt(num min) =>
    isType<num>() & validator((value) => value > min, (value) => 'greater than $min');