MemoryToolInput.fromJson constructor

MemoryToolInput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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