gt method

Expr<bool?> gt(
  1. T value
)

Tests whether this value is greater than the bound value.

Implementation

Expr<bool?> gt(T value) => _compare(
  '>',
  ParameterNode(codec.encode(value), storageType: codec.sqlType),
);