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