load static method

Set<String> load()

Implementation

static Set<String> load() {
  if (!reservedFile.existsSync()) return {};
  return reservedFile.readAsLinesSync().map((line) => line.trim()).where((line) => line.isNotEmpty).toSet();
}