TerminologyServiceErrorClass constructor
TerminologyServiceErrorClass(})
Factory constructor to create a new instance of TerminologyServiceErrorClass with the specified parameters.
Implementation
// ignore: sort_unnamed_constructors_first
factory TerminologyServiceErrorClass(
String? rawValue, {
Element? element,
FhirString? id,
List<FhirExtension>? extension_,
bool? disallowExtensions,
String? system,
String? version,
String? display,
}) {
return TerminologyServiceErrorClass._(
rawValue,
system: system?.toFhirUri,
version: version?.toFhirString,
display: display?.toFhirString,
element: element,
id: id,
extension_: extension_,
disallowExtensions: disallowExtensions,
);
}