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