copyWith method
Creates a new Coding instance with the provided values.
Implementation
Coding copyWith({
Uri? system,
String? code,
String? display,
}) =>
Coding(
system: system ?? this.system,
code: code ?? this.code,
display: display ?? this.display,
);