Matcher for matching a column value greater than the argument when using Query.where.
See Query.where. Example:
var query = new Query<Employee>()
..where.salary = whereGreaterThan(60000);
Source
dynamic whereGreaterThan(dynamic value) { return new ComparisonMatcherExpression(value, MatcherOperator.greaterThan); }