option_select_item.g.dart 685 B

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