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