Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
21cd9da9a9
@ -0,0 +1,19 @@
|
|||||||
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||||
|
|
||||||
|
part of 'listFilesResponse.dart';
|
||||||
|
|
||||||
|
// **************************************************************************
|
||||||
|
// JsonSerializableGenerator
|
||||||
|
// **************************************************************************
|
||||||
|
|
||||||
|
ListFilesResponse _$ListFilesResponseFromJson(Map<String, dynamic> json) =>
|
||||||
|
ListFilesResponse(
|
||||||
|
(json['files'] as List<dynamic>)
|
||||||
|
.map((e) => CacheableFile.fromJson(e as Map<String, dynamic>))
|
||||||
|
.toSet(),
|
||||||
|
);
|
||||||
|
|
||||||
|
Map<String, dynamic> _$ListFilesResponseToJson(ListFilesResponse instance) =>
|
||||||
|
<String, dynamic>{
|
||||||
|
'files': instance.files.map((e) => e.toJson()).toList(),
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user