operator == method
Equality operator override.
Implementation
@override
// ignore: avoid_equals_and_hash_code_on_mutable_classes
bool operator ==(Object other) =>
identical(this, other) ||
(other is FhirString && other.valueString == valueString) ||
(other is String && other == valueString);