copyWith method
LookAndFeelSettings
copyWith({
- LookAndFeelSettingsSelected? selected,
- LookAndFeel? global,
- LookAndFeel? theme,
- 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,
);
}