import 'package:json_annotation/json_annotation.dart'; part 'ActionType.g.dart'; @JsonSerializable() class ActionType { ActionType(); num id; String name; String description; factory ActionType.fromJson(Map json) => _$ActionTypeFromJson(json); Map toJson() => _$ActionTypeToJson(this); }