tableExists method

Future<bool> tableExists(
  1. String tableName
)

Helper to check if table exists

Implementation

Future<bool> tableExists(String tableName) async {
  return await schemaManager.tableExists(tableName);
}