mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-03-26 04:42:35 -05:00
fix(bb): download url
This commit is contained in:
@@ -70,6 +70,7 @@ class BbTree {
|
||||
String type;
|
||||
String path;
|
||||
int size;
|
||||
Map<String, dynamic> links;
|
||||
BbTree();
|
||||
factory BbTree.fromJson(Map<String, dynamic> json) => _$BbTreeFromJson(json);
|
||||
}
|
||||
|
||||
@@ -122,11 +122,13 @@ BbTree _$BbTreeFromJson(Map<String, dynamic> json) {
|
||||
return BbTree()
|
||||
..type = json['type'] as String
|
||||
..path = json['path'] as String
|
||||
..size = json['size'] as int;
|
||||
..size = json['size'] as int
|
||||
..links = json['links'] as Map<String, dynamic>;
|
||||
}
|
||||
|
||||
Map<String, dynamic> _$BbTreeToJson(BbTree instance) => <String, dynamic>{
|
||||
'type': instance.type,
|
||||
'path': instance.path,
|
||||
'size': instance.size,
|
||||
'links': instance.links,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user