isTableExisted method

Future<bool> isTableExisted()

Check if current table existed

Implementation

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