Message.fromJson constructor

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

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)),
);