text property

String get text

The text content displayed in the sticky note.

Implementation

String get text => _text.value;
set text (String value)

Implementation

set text(String value) => runInAction(() => _text.value = value);