endsWith method

ConditionQuery endsWith(
  1. String text
)

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

Implementation

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