// GENERATED CODE - DO NOT MODIFY BY HAND part of 'key_combinations.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$KeyCombinationImpl _$$KeyCombinationImplFromJson(Map json) => _$KeyCombinationImpl( modifier: _$JsonConverterFromJson( json['modifier'], const LogicalKeyboardSerializer().fromJson), key: const LogicalKeyboardSerializer().fromJson(json['key'] as String), ); Map _$$KeyCombinationImplToJson( _$KeyCombinationImpl instance) => { 'modifier': _$JsonConverterToJson( instance.modifier, const LogicalKeyboardSerializer().toJson), 'key': const LogicalKeyboardSerializer().toJson(instance.key), }; Value? _$JsonConverterFromJson( Object? json, Value? Function(Json json) fromJson, ) => json == null ? null : fromJson(json as Json); Json? _$JsonConverterToJson( Value? value, Json? Function(Value value) toJson, ) => value == null ? null : toJson(value);