copyWith method

DeviceSyncV3Body copyWith({
  1. DateTime? toDate,
  2. DateTime? fromDate,
})

Implementation

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