create method
Implementation
Future<void> create({required String tableName, required String tableColumns}) async {
try {
if(_database.isOpen){
await _database.execute('CREATE TABLE $tableName ($tableColumns)');
}
} catch (ex) {
Log.e("$_TAG: create Exception: ", ex.toString());
}
}