MemoryToolInput.fromJson constructor
Implementation
factory MemoryToolInput.fromJson(Map<String, dynamic> json) =>
MemoryToolInput(
action: json['action'] as String,
path: json['path'] as String?,
content: json['content'] as String?,
);