merge method
Merges this RunnableOptions with another RunnableOptions.
Implementation
RunnableOptions merge(RunnableOptions? other) {
return copyWith(concurrencyLimit: other?.concurrencyLimit);
}
Merges this RunnableOptions with another RunnableOptions.
RunnableOptions merge(RunnableOptions? other) {
return copyWith(concurrencyLimit: other?.concurrencyLimit);
}