RetrieveToolSchemaRequest.fromJson constructor

RetrieveToolSchemaRequest.fromJson(
  1. Map json_
)

Implementation

RetrieveToolSchemaRequest.fromJson(core.Map json_)
  : this(
      tool: json_['tool'] as core.String?,
      toolsetTool: json_.containsKey('toolsetTool')
          ? ToolsetTool.fromJson(
              json_['toolsetTool'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );