Tool.fromJson constructor
Tool.fromJson(
- Map json_
Implementation
Tool.fromJson(core.Map json_)
: this(
annotations: json_.containsKey('annotations')
? Annotations.fromJson(
json_['annotations'] as core.Map<core.String, core.dynamic>,
)
: null,
description: json_['description'] as core.String?,
name: json_['name'] as core.String?,
);