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