copyWith method
Implementation
DeviceSyncV3Body copyWith({DateTime? toDate, DateTime? fromDate}) {
return DeviceSyncV3Body(
toDate: toDate ?? this.toDate, fromDate: fromDate ?? this.fromDate);
}
DeviceSyncV3Body copyWith({DateTime? toDate, DateTime? fromDate}) {
return DeviceSyncV3Body(
toDate: toDate ?? this.toDate, fromDate: fromDate ?? this.fromDate);
}