merge method

Merges this RunnableOptions with another RunnableOptions.

Implementation

RunnableOptions merge(RunnableOptions? other) {
  return copyWith(
    concurrencyLimit: other?.concurrencyLimit,
  );
}