whereNowOrFuture method

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

Implementation

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