DropTableOptions constructor

const DropTableOptions({
  1. required String table,
  2. bool ifExists = false,
  3. bool cascade = false,
})

Implementation

const DropTableOptions({
  required this.table,
  this.ifExists = false,
  this.cascade = false,
});