import 'package:json_annotation/json_annotation.dart'; part 'OtherAction.g.dart'; @JsonSerializable() class OtherAction { OtherAction(); num id; num activityId; String executeDate; String description; String activityTypeName; String workerName; factory OtherAction.fromJson(Map json) => _$OtherActionFromJson(json); Map toJson() => _$OtherActionToJson(this); }