content property
String
get
content
The grapheme content stored in this cell.
Implementation
String get content => switch (_contentKind) {
_CellContentKind.empty => '',
_CellContentKind.space => ' ',
_CellContentKind.singleScalar => String.fromCharCode(_contentValue),
_CellContentKind.complex => _graphemePool.resolve(_contentValue),
_ => '',
};
set
content
(String value)
Implementation
set content(String value) => _setContent(value);