canDisplay method

bool canDisplay(
  1. String character
)

Returns true when character can be displayed on the display.

Implementation

bool canDisplay(String character) => characterMap.containsKey(character);