Drop constructor

Drop(
  1. dynamic table, {
  2. bool onlyIfExists = false,
})

Implementation

Drop(/* String | Iterable<String> */ table, {this.onlyIfExists = false}) {
  if (table is String) _tables.add(table);
  if (table is Iterable<String>) _tables.addAll(table);
}