dropTable method

Future<bool> dropTable()

Implementation

Future<bool> dropTable() async {
  var con = await _initializeConnection(isolatedConnection: true);
  await con.query('DROP TABLE $tableName;');
  return true;
}