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