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