import 'package:json_annotation/json_annotation.dart'; part 'HistoryAction.g.dart'; @JsonSerializable() class HistoryAction { HistoryAction(); num id; num ageDay; num cropId; String executeDate; String description; num activityTypeId; String activityTypeName; factory HistoryAction.fromJson(Map json) => _$HistoryActionFromJson(json); Map toJson() => _$HistoryActionToJson(this); }