初始化项目

This commit is contained in:
wyf
2025-04-11 08:47:46 +08:00
parent e0e1055d65
commit 9396f18d09
199 changed files with 6516 additions and 216 deletions

17
lib/model/issue.g.dart Normal file
View 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,
};