whereStartsWith method
Implementation
T whereStartsWith(String field, String value,
{bool caseSensitive = false, bool escape = true}) {
qb.whereStartsWith(field, value,
caseSensitive: caseSensitive, escape: escape);
return this as T;
}
T whereStartsWith(String field, String value,
{bool caseSensitive = false, bool escape = true}) {
qb.whereStartsWith(field, value,
caseSensitive: caseSensitive, escape: escape);
return this as T;
}