appendThinking method

void appendThinking(
  1. String text
)

Appends a streamed reasoning delta to thinking.

Implementation

void appendThinking(String text) {
  _thinking = (_thinking ?? '') + text;
  notifyListeners();
}