import 'package:json_annotation/json_annotation.dart'; part 'Plot.g.dart'; @JsonSerializable() class Plot { Plot(); num id; num times; String activityExecuteDate; bool isExceedLimit; factory Plot.fromJson(Map json) => _$PlotFromJson(json); Map toJson() => _$PlotToJson(this); }