startsWith method

ConditionQuery startsWith(
  1. String text
)

Get sql statement to check this value if start with text.

Implementation

ConditionQuery startsWith(String text) {
  return ConditionQuery(
      before: this, after: '$text%', operatorString: 'LIKE');
}