Drop constructor
Drop(
- dynamic table, {
- 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);
}