toolActivity property

String? get toolActivity

Name(s) of the tools the model is currently running to produce this message, or null when no tool is in flight.

Transient streaming state set only while the turn is live; not serialized by toJson.

Implementation

String? get toolActivity => _toolActivity;
set toolActivity (String? value)

Implementation

set toolActivity(String? value) {
  if (value == _toolActivity) return;
  _toolActivity = value;
  notifyListeners();
}