whereFuture method

  1. @override
QueryBuilder whereFuture(
  1. String column, {
  2. String boolean = 'and',
})
inherited

Implementation

@override
QueryBuilder whereFuture(String column, {String boolean = 'and'}) {
  _appendCondition("$column > NOW()", isOr: (boolean.toLowerCase() == 'or'));
  return this;
}