wherePast method

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

Implementation

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