You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
675 B
18 lines
675 B
2 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'update_model.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
UpdateModel _$UpdateModelFromJson(Map<String, dynamic> json) => UpdateModel(
|
||
|
updateStatus: json['updateStatus'] as int,
|
||
|
versionCode: json['versionCode'] as int,
|
||
|
versionName: json['versionName'] as String,
|
||
|
modifyContent: json['modifyContent'] as String,
|
||
|
downloadUrl: json['downloadUrl'] as String,
|
||
|
apkSize: json['apkSize'] as String,
|
||
|
apkMd5: json['apkMd5'] as String,
|
||
|
);
|