18 lines
591 B
Dart
18 lines
591 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'issue.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
IssueModel _$IssueModelFromJson(Map<String, dynamic> json) => IssueModel()
|
|
..title = json['title'] as String?
|
|
..title_content = json['title_content'] as String?;
|
|
|
|
Map<String, dynamic> _$IssueModelToJson(IssueModel instance) =>
|
|
<String, dynamic>{
|
|
'title': instance.title,
|
|
'title_content': instance.title_content,
|
|
};
|