GenerateCustomToolspecResponse.fromJson constructor
GenerateCustomToolspecResponse.fromJson(
- Map json_
Implementation
GenerateCustomToolspecResponse.fromJson(core.Map json_)
: this(
toolSpec: json_.containsKey('toolSpec')
? ToolSpec.fromJson(
json_['toolSpec'] as core.Map<core.String, core.dynamic>,
)
: null,
);