copyWith method

LanguageDetectionToolConfig copyWith({
  1. String? systemToolType,
})

Implementation

LanguageDetectionToolConfig copyWith({String? systemToolType}) {
  return LanguageDetectionToolConfig(
      systemToolType: systemToolType ?? this.systemToolType);
}