copyWithWrapped method

WidgetLanguagePreset copyWithWrapped({
  1. Wrapped? textContents,
})

Implementation

WidgetLanguagePreset copyWithWrapped({Wrapped<dynamic>? textContents}) {
  return WidgetLanguagePreset(
      textContents:
          (textContents != null ? textContents.value : this.textContents));
}