setChar method

CursorModel setChar(
  1. String char
)

Sets the character displayed under the cursor.

Implementation

CursorModel setChar(String char) {
  return copyWith(char: char);
}