copyWith method
Makes a deep copy of this Identifier.
Implementation
Identifier copyWith({
Type? type,
Uri? system,
String? value,
String? use,
}) =>
Identifier(
type: type ?? this.type,
system: system ?? this.system,
value: value ?? this.value,
use: use ?? this.use,
);