endsWith method
- String p,
- {bool caseSensitive: false}
Implementation
Condition endsWith(String p, {bool caseSensitive = false}) {
return _op(p, ConditionOp.stringEnds, caseSensitive);
}
Condition endsWith(String p, {bool caseSensitive = false}) {
return _op(p, ConditionOp.stringEnds, caseSensitive);
}