merge method
Merges this RunnableOptions with another RunnableOptions.
Implementation
@override
FakeEchoChatModelOptions merge(
covariant final FakeEchoChatModelOptions? other,
) {
return copyWith(
model: other?.model,
metadata: other?.metadata,
throwRandomError: other?.throwRandomError,
concurrencyLimit: other?.concurrencyLimit,
);
}