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