copyWithWrapped method
Implementation
DeviceSyncV3Body copyWithWrapped(
{Wrapped<DateTime?>? toDate, Wrapped<DateTime?>? fromDate}) {
return DeviceSyncV3Body(
toDate: (toDate != null ? toDate.value : this.toDate),
fromDate: (fromDate != null ? fromDate.value : this.fromDate));
}