copyWithWrapped method
Implementation
SkipTurnToolConfig copyWithWrapped({Wrapped<String?>? systemToolType}) {
return SkipTurnToolConfig(
systemToolType: (systemToolType != null
? systemToolType.value
: this.systemToolType));
}