import 'package:json_annotation/json_annotation.dart'; part 'me_bean.g.dart'; @JsonSerializable() class MeBean { int? Id; String? TaskId; String? OutputUri; String? CreatTime; String? UpdateTime; String? InputParams; String? Title; bool? IsCheck; MeBean(this.Id, this.TaskId, this.OutputUri, this.CreatTime, this.UpdateTime, this.InputParams, this.Title, this.IsCheck); factory MeBean.fromJson(Map json) => _$MeBeanFromJson(json); Map toJson() => _$MeBeanToJson(this); }