dropTable method

Future<void> dropTable()

Drop table

Implementation

Future<void> dropTable() async {
  await _db.execute("DROP TABLE IF EXISTS ${table.tableName}");
  return;
}