whereEndsWith method
Adds a WHERE condition that checks if field ends with value.
Implementation
QueryBuilder whereEndsWith(String field, String value,
{bool caseSensitive = false, bool escape = true}) =>
whereLike(field, '%$value', caseSensitive: caseSensitive, escape: escape);