updateDraftSilently method

void updateDraftSilently(
  1. String value
)

Updates the text draft without notifying listeners.

Implementation

void updateDraftSilently(String value) {
  _draft = value;
  _mentions = _normalizeMentions(value);
}