orWhereEndsWith method
Adds an OR condition that checks if field ends with value.
Implementation
QueryBuilder orWhereEndsWith(String field, String value,
{bool caseSensitive = false, bool escape = true}) =>
orWhereLike(field, '%$value',
caseSensitive: caseSensitive, escape: escape);