We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fad98d2 + 84d80ab commit ecc946eCopy full SHA for ecc946e
lib/src/common/model/pulls.dart
@@ -297,6 +297,7 @@ class PullRequestFile {
297
int changesCount;
298
String blobUrl;
299
String rawUrl;
300
+ String contentsUrl;
301
String patch;
302
303
static PullRequestFile fromJSON(Map<String, dynamic> input) {
@@ -309,6 +310,7 @@ class PullRequestFile {
309
310
file.changesCount = input['changes'];
311
file.blobUrl = input['blob_url'];
312
file.rawUrl = input['raw_url'];
313
+ file.contentsUrl = input['contents_url'];
314
file.patch = input['patch'];
315
return file;
316
}
0 commit comments