drop method

  1. @override
void drop(
  1. String tableName
)
override

Drops the specified table.

Implementation

@override
void drop(String tableName) {
  _queries.add('DROP TABLE "$tableName";');
}