copyWith method
SetDefaultBackground
copyWith({
- InputBackground? background,
- BackgroundType? type,
- bool? forDarkTheme,
Implementation
SetDefaultBackground copyWith({
InputBackground? background,
BackgroundType? type,
bool? forDarkTheme,
}) => SetDefaultBackground(
background: background ?? this.background,
type: type ?? this.type,
forDarkTheme: forDarkTheme ?? this.forDarkTheme,
);