check method

String check()

Implementation

String check() {
  return runes.map((r) => cp437Set.contains(r) ? String.fromCharCode(r) : '?').join();
}