option_select_item.g.dart 604 B

12345678910111213141516
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'option_select_item.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. OptionSelectItem _$OptionSelectItemFromJson(Map<String, dynamic> json) =>
  7. OptionSelectItem(
  8. json['name'] as String,
  9. selected: json['selected'] as bool? ?? false,
  10. );
  11. Map<String, dynamic> _$OptionSelectItemToJson(OptionSelectItem instance) =>
  12. <String, dynamic>{'name': instance.name, 'selected': instance.selected};