gt method

B gt(
  1. num n, {
  2. String? message,
})

Validate that the number is greater than the specified value.

Implementation

B gt(num n, {String? message}) => add(isGt(n), message: message);