dropDatabaseIfExists method

void dropDatabaseIfExists(
  1. String name
)

Drops a database if it exists.

Implementation

void dropDatabaseIfExists(String name) {
  _mutations.add(SchemaMutation.dropDatabase(name: name, ifExists: true));
}