import 'package:json_annotation/json_annotation.dart'; part 'issue.g.dart'; @JsonSerializable() class IssueModel { String? title; String? title_content; IssueModel(); static IssueModel fromJson(Map json) => _$IssueModelFromJson(json); Map toJson() => _$IssueModelToJson(this); }