thinking property

bool get thinking

Implementation

bool get thinking {
  return _thinking;
}
set thinking (bool value)

Implementation

set thinking(bool value) {
  if (value != _thinking) {
    _thinking = value;
    notifyListeners();
  }
}