startsWith method

Condition startsWith (
  1. String p,
  2. {bool caseSensitive: false}
)

Implementation

Condition startsWith(String p, {bool caseSensitive = false}) {
  return _op(p, ConditionOp.stringStarts, caseSensitive);
}