初始化项目
This commit is contained in:
17
lib/model/issue.g.dart
Normal file
17
lib/model/issue.g.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
// 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,
|
||||
};
|
||||
Reference in New Issue
Block a user