// GENERATED CODE - DO NOT MODIFY BY HAND part of 'server_configurations.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** AutoUpgradeConfigurations _$AutoUpgradeConfigurationsFromJson( Map json) => AutoUpgradeConfigurations( enable: json['enable'] as bool, allowReboot: json['allowReboot'] as bool, ); Map _$AutoUpgradeConfigurationsToJson( AutoUpgradeConfigurations instance) => { 'enable': instance.enable, 'allowReboot': instance.allowReboot, };