isGte function

IEskValidator isGte(
  1. num min
)

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");