dropTable method

Future<bool> dropTable(
  1. String tableName
)

Drop table

Implementation

Future<bool> dropTable(String tableName) async {
  return await BoxerDatabaseUtil.dropTable(database, tableName);
}