isTableExisted method

Future<bool> isTableExisted(
  1. String tableName
)

Check if current table created success using "sqlite_master"

Implementation

Future<bool> isTableExisted(String tableName) async {
  return await BoxerDatabaseUtil.isTableExisted(database, tableName);
}