copyWithWrapped method

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

Implementation

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