dropDatabaseIfExists method
Drops a database if it exists. Returns true if dropped, false if didn't exist.
Implementation
@override
Future<bool> dropDatabaseIfExists(String name) async {
throw UnsupportedError(
'SnapshotSchemaDriver does not support database management.',
);
}