Cell.withChar constructor

Cell.withChar(
  1. int char
)

Create a cell with the specified char code point.

Implementation

factory Cell.withChar(int char) => Cell()..setChar(char);