copyWith method
Creates a copy of this RunnableOptions with the given fields replaced by the new values.
Implementation
@override
FakeLLMOptions copyWith({final String? model, final int? concurrencyLimit}) {
return FakeLLMOptions(
model: model ?? this.model,
concurrencyLimit: concurrencyLimit ?? this.concurrencyLimit,
);
}