You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
761B

  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'ResourceHelper.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. ResourceHelper _$ResourceHelperFromJson(Map<String, dynamic> json) {
  7. return ResourceHelper()
  8. ..id = json['id'] as num
  9. ..name = json['name'] as String
  10. ..description = json['description'] as String
  11. ..isSelected = json['isSelected'] as bool;
  12. }
  13. Map<String, dynamic> _$ResourceHelperToJson(ResourceHelper instance) =>
  14. <String, dynamic>{
  15. 'id': instance.id,
  16. 'name': instance.name,
  17. 'description': instance.description,
  18. 'isSelected': instance.isSelected,
  19. };