copyWith method
Makes a copy of this CodeableConcept and allows for non-destructive mutation.
Implementation
CodeableConcept copyWith({
FixedList<Coding>? coding,
String? text,
}) =>
CodeableConcept(
coding: coding ?? this.coding,
text: text ?? this.text,
);