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.
23 lines
821 B
23 lines
821 B
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'activity_pos.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
ActivityPos _$ActivityPosFromJson(Map<String, dynamic> json) => ActivityPos() |
|
..enabled = json['enabled'] as bool? |
|
..code = json['code'] as String? |
|
..showImage = json['showImage'] as String? |
|
..jumpType = (json['jumpType'] as num?)?.toInt() |
|
..jumpUrl = json['jumpUrl'] as String?; |
|
|
|
Map<String, dynamic> _$ActivityPosToJson(ActivityPos instance) => |
|
<String, dynamic>{ |
|
'enabled': instance.enabled, |
|
'code': instance.code, |
|
'showImage': instance.showImage, |
|
'jumpType': instance.jumpType, |
|
'jumpUrl': instance.jumpUrl, |
|
};
|
|
|