dropIfExists method

Future<void> dropIfExists(
  1. String name
)

Drops a table only if it exists (safe version).

Implementation

Future<void> dropIfExists(String name) async => drop(name);