copyWith method

UpdateDefaultBackground copyWith({
  1. bool? forDarkTheme,
  2. Background? background,
})

Implementation

UpdateDefaultBackground copyWith({
  bool? forDarkTheme,
  Background? background,
}) => UpdateDefaultBackground(
  forDarkTheme: forDarkTheme ?? this.forDarkTheme,
  background: background ?? this.background,
);