File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ class Gist {
47
47
DateTime ? updatedAt;
48
48
49
49
factory Gist .fromJson (Map <String , dynamic > input) => _$GistFromJson (input);
50
+ Map <String , dynamic > toJson () => _$GistToJson (this );
50
51
}
51
52
52
53
/// Model class for a gist file.
@@ -90,6 +91,7 @@ class GistFork {
90
91
91
92
factory GistFork .fromJson (Map <String , dynamic > input) =>
92
93
_$GistForkFromJson (input);
94
+ Map <String , dynamic > toJson () => _$GistForkToJson (this );
93
95
}
94
96
95
97
/// Model class for a gits history entry.
@@ -121,6 +123,7 @@ class GistHistoryEntry {
121
123
122
124
factory GistHistoryEntry .fromJson (Map <String , dynamic > input) =>
123
125
_$GistHistoryEntryFromJson (input);
126
+ Map <String , dynamic > toJson () => _$GistHistoryEntryToJson (this );
124
127
}
125
128
126
129
/// Model class for gist comments.
You can’t perform that action at this time.
0 commit comments