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