copyWithWrapped method

WebApiModulesSettingsWidgetSettingsWidgetWidgetTitle copyWithWrapped({
  1. Wrapped<int?>? fontSize,
  2. Wrapped<bool?>? display,
  3. Wrapped<String?>? text,
})

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));
}