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.
28 lines
1.0 KiB
28 lines
1.0 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'activity_details.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
ActivityDetails _$ActivityDetailsFromJson(Map<String, dynamic> json) => |
|
ActivityDetails( |
|
endTime: json['endTime'] as String?, |
|
actProduct: json['actProduct'] == null |
|
? null |
|
: ActProduct.fromJson(json['actProduct'] as Map<String, dynamic>), |
|
actRecordAndJoinlDTOList: |
|
(json['actRecordAndJoinlDTOList'] as List<dynamic>?) |
|
?.map((e) => |
|
ActRecordAndJoinlDTOList.fromJson(e as Map<String, dynamic>)) |
|
.toList(), |
|
); |
|
|
|
Map<String, dynamic> _$ActivityDetailsToJson(ActivityDetails instance) => |
|
<String, dynamic>{ |
|
'endTime': instance.endTime, |
|
'actProduct': instance.actProduct?.toJson(), |
|
'actRecordAndJoinlDTOList': |
|
instance.actRecordAndJoinlDTOList?.map((e) => e.toJson()).toList(), |
|
};
|
|
|