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.
16 lines
567 B
16 lines
567 B
3 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'updater_model.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
UpdaterModel _$UpdaterModelFromJson(Map<String, dynamic> json) => UpdaterModel(
|
||
|
id: json['id'] as int,
|
||
|
versionNumber: json['versionNumber'] as String,
|
||
|
buildNo: json['buildNo'] as String,
|
||
|
forceUpdate: json['forceUpdate'] as int,
|
||
|
createDate: json['createDate'] as String,
|
||
|
);
|