copyWith method

LookAndFeelSettings copyWith({
  1. LookAndFeelSettingsSelected? selected,
  2. LookAndFeel? global,
  3. LookAndFeel? theme,
  4. LookAndFeel? custom,
})

Implementation

LookAndFeelSettings copyWith(
    {LookAndFeelSettingsSelected? selected,
    LookAndFeel? global,
    LookAndFeel? theme,
    LookAndFeel? custom}) {
  return LookAndFeelSettings(
    selected: selected ?? this.selected,
    global: global ?? this.global,
    theme: theme ?? this.theme,
    custom: custom ?? this.custom,
  );
}