import 'package:json_annotation/json_annotation.dart'; part 'MessageBean.g.dart'; @JsonSerializable(explicitToJson: true) class MessageBean{ String? role; String? content; String? img; MessageBean(this.role,this.content,this.img); factory MessageBean.fromJson(Map json) => _$MessageBeanFromJson(json); Map toJson() => _$MessageBeanToJson(this); }