drop method

Future<void> drop(
  1. String tableName
)

Implementation

Future<void> drop(String tableName) async {
  final statements = _requireAdapter.renderDropTable(
    tableName,
    ifExists: true,
  );
  await _executeStatements(statements);
}