merge method

  1. @override
FakeEchoChatModelOptions merge(
  1. covariant FakeEchoChatModelOptions? other
)
override

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