whereStartsWith method

T whereStartsWith(
  1. String field,
  2. String value, {
  3. bool caseSensitive = false,
  4. bool escape = true,
})

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;
}