Message.fromJson constructor
Creates a Message instance from a JSON map.
Implementation
factory Message.fromJson(Map<String, dynamic> json) => Message(
content: json["content"],
role: json["role"],
toolCalls: json["tool_calls"],
functionCall: json["function_call"],
);