mirror of
https://github.com/lifegpc/eh_downloader_flutter.git
synced 2026-07-08 01:30:28 +08:00
修复tag原文显示问题
更新依赖
This commit is contained in:
@@ -7,9 +7,9 @@ part of 'file.dart';
|
||||
// **************************************************************************
|
||||
|
||||
EhFileBasic _$EhFileBasicFromJson(Map<String, dynamic> json) => EhFileBasic(
|
||||
id: json['id'] as int,
|
||||
width: json['width'] as int,
|
||||
height: json['height'] as int,
|
||||
id: (json['id'] as num).toInt(),
|
||||
width: (json['width'] as num).toInt(),
|
||||
height: (json['height'] as num).toInt(),
|
||||
isOriginal: json['is_original'] as bool,
|
||||
);
|
||||
|
||||
@@ -22,9 +22,9 @@ Map<String, dynamic> _$EhFileBasicToJson(EhFileBasic instance) =>
|
||||
};
|
||||
|
||||
EhFileExtend _$EhFileExtendFromJson(Map<String, dynamic> json) => EhFileExtend(
|
||||
id: json['id'] as int,
|
||||
width: json['width'] as int,
|
||||
height: json['height'] as int,
|
||||
id: (json['id'] as num).toInt(),
|
||||
width: (json['width'] as num).toInt(),
|
||||
height: (json['height'] as num).toInt(),
|
||||
isOriginal: json['is_original'] as bool,
|
||||
token: json['token'] as String,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user