copyWithWrapped method

EndCallToolConfig copyWithWrapped({
  1. Wrapped<String?>? systemToolType,
})

Implementation

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