drop method

Future<void> drop(
  1. String tableName
)

删除数据表的功能

Implementation

Future<void> drop(String tableName) async {
  return _database!.execute("DROP TABLE $tableName");
}