DeleteStatement constructor

DeleteStatement({
  1. WithClause? withClause,
  2. required TableReference from,
  3. Expression? where,
  4. Returning? returning,
})

Implementation

DeleteStatement(
    {WithClause? withClause, required this.from, this.where, this.returning})
    : super(withClause);