clear method
dynamic
clear()
Implementation
clear() async {
db.query('''
PRAGMA writable_schema = 1;
DELETE FROM sqlite_master;
PRAGMA writable_schema = 0;
VACUUM;
PRAGMA integrity_check;
''');
}