copyWith method
Implementation
ActivityListResponse copyWith({ List<ActivityListData>? data,
num? success,
}) => ActivityListResponse( data: data ?? _data,
success: success ?? _success,
);
ActivityListResponse copyWith({ List<ActivityListData>? data,
num? success,
}) => ActivityListResponse( data: data ?? _data,
success: success ?? _success,
);