| 123456789101112131415161718192021 |
- // 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,
- json['value'] as String,
- selected: json['selected'] as bool? ?? false,
- );
- Map<String, dynamic> _$OptionSelectItemToJson(OptionSelectItem instance) =>
- <String, dynamic>{
- 'name': instance.name,
- 'value': instance.value,
- 'selected': instance.selected,
- };
|