dropDb method

Future<void> dropDb(
  1. DropDb st
)
override

Drops tables from database

Implementation

Future<void> dropDb(DropDb st) async {
  String strSt = composeDropDb(st);
  await connection.execute(strSt);
}