// GENERATED CODE - DO NOT MODIFY BY HAND part of 'key_combinations.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _KeyCombination _$KeyCombinationFromJson(Map json) => _KeyCombination( key: _$JsonConverterFromJson( json['key'], const LogicalKeyboardSerializer().fromJson), modifier: _$JsonConverterFromJson( json['modifier'], const LogicalKeyboardSerializer().fromJson), altKey: _$JsonConverterFromJson( json['altKey'], const LogicalKeyboardSerializer().fromJson), altModifier: _$JsonConverterFromJson( json['altModifier'], const LogicalKeyboardSerializer().fromJson), ); Map _$KeyCombinationToJson(_KeyCombination instance) => { 'key': _$JsonConverterToJson( instance.key, const LogicalKeyboardSerializer().toJson), 'modifier': _$JsonConverterToJson( instance.modifier, const LogicalKeyboardSerializer().toJson), 'altKey': _$JsonConverterToJson( instance.altKey, const LogicalKeyboardSerializer().toJson), 'altModifier': _$JsonConverterToJson( instance.altModifier, const LogicalKeyboardSerializer().toJson), }; 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);