factory MessageItem.fromJson(Map<String, dynamic> json) { return MessageItem( role: json['role'], content: json['content'], ); }