copyWith method

DateTimeCond copyWith({
  1. DateTime? min,
  2. DateTime? max,
  3. bool? ignore,
})

Implementation

DateTimeCond copyWith({
  DateTime? min,
  DateTime? max,
  bool? ignore,
}) {
  return DateTimeCond(
    min: min ?? this.min,
    max: max ?? this.max,
    ignore: ignore ?? this.ignore,
  );
}