hasTable method

Future<bool> hasTable(
  1. TableName tableName
)

Implementation

Future<bool> hasTable(TableName tableName) async {
  return await _postgresDb.hasTable(tableName);
}