gte method

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

Tests whether this value is greater than or equal to the bound value.

Implementation

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