plus method
Implementation
@override
FhirInstant plus(Object other) {
final Duration? duration = durationFromObject(other);
return duration != null
? FhirInstant._(
isValid: true,
parseError: null,
value: value.add(duration),
)
: this;
}