tools property

Tools? get tools

Present if the server offers any tools to call.

Implementation

Tools? get tools => _value['tools'] as Tools?;
set tools (Tools? value)

Sets tools if it is null, otherwise throws.

Implementation

set tools(Tools? value) {
  assert(tools == null);
  _value['tools'] = value;
}