operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

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);