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.

22 lines
649B

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