copyWith method
Creates a deep copy of this Timing.
Implementation
Timing copyWith({
FixedList<DateTime>? event,
Repeat? repeat,
CodeableConcept? code,
}) =>
Timing(
event: event ?? this.event,
repeat: repeat ?? this.repeat,
code: code ?? this.code,
);