mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-10-31 22:17:29 +00:00
21 lines
664 B
Dart
21 lines
664 B
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'auto_upgrade_settings.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
AutoUpgradeSettings _$AutoUpgradeSettingsFromJson(Map<String, dynamic> json) =>
|
||
|
AutoUpgradeSettings(
|
||
|
enable: json['enable'] as bool,
|
||
|
allowReboot: json['allowReboot'] as bool,
|
||
|
);
|
||
|
|
||
|
Map<String, dynamic> _$AutoUpgradeSettingsToJson(
|
||
|
AutoUpgradeSettings instance) =>
|
||
|
<String, dynamic>{
|
||
|
'enable': instance.enable,
|
||
|
'allowReboot': instance.allowReboot,
|
||
|
};
|