Message.fromJson constructor
Implementation
factory Message.fromJson(Map<String, dynamic> json) => Message(
role: json["role"],
content: json["content"],
fileIds: json["file_ids"] == null ? [] : List<String>.from(json["file_ids"]!.map((x) => x)),
);