toolChoice property
String?
get
toolChoice
Implementation
String? get toolChoice {
return _json['toolChoice'] as String?;
}
set
toolChoice
(String? value)
Implementation
set toolChoice(String? value) {
if (value == null) {
_json.remove('toolChoice');
} else {
_json['toolChoice'] = value;
}
}