copyWith method

WidgetLanguagePreset copyWith({
  1. dynamic textContents,
})

Implementation

WidgetLanguagePreset copyWith({dynamic textContents}) {
  return WidgetLanguagePreset(
      textContents: textContents ?? this.textContents);
}