option_select_item.g.dart 565 B

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