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