// GENERATED CODE - DO NOT MODIFY BY HAND part of 'option_select_item.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** OptionSelectItem _$OptionSelectItemFromJson(Map json) => OptionSelectItem( json['name'] as String, json['value'] as String, selected: json['selected'] as bool? ?? false, ); Map _$OptionSelectItemToJson(OptionSelectItem instance) => { 'name': instance.name, 'value': instance.value, 'selected': instance.selected, };