gtEqStr function

Cond<String> gtEqStr(
  1. String field,
  2. String rhs, {
  3. String? tableName,
})

DSL to create 'is greater than or equal to' relational condition

Implementation

Cond<String> gtEqStr(String field, String rhs, {String? tableName}) =>
    new Cond<String>(new Field<String>.inTable(tableName, field), Op.GtEq, rhs);