copyWithWrapped method
Implementation
FwStandardModulesSettingsWidgetSettingsWidgetWidgetTitle copyWithWrapped({
Wrapped<int?>? fontSize,
Wrapped<bool?>? display,
Wrapped<String?>? text,
}) {
return FwStandardModulesSettingsWidgetSettingsWidgetWidgetTitle(
fontSize: (fontSize != null ? fontSize.value : this.fontSize),
display: (display != null ? display.value : this.display),
text: (text != null ? text.value : this.text),
);
}