Matcher for matching string properties that do not start with value when using Query.where.
See Query.where. Example:
var query = new Query<Employee>()
..where.name = whereDoesNotBeginWith("B");
caseSensitive is will toggle
if value is to be case sensitive equal to matched values.
Source
dynamic whereDoesNotBeginWith(String value, {bool caseSensitive: true}) {
return new StringMatcherExpression(
value, StringMatcherOperator.beginsWith,
caseSensitive: caseSensitive,
invertOperator: true);
}