copyWith method

  1. @override
UpdateSelectedBackground copyWith({
  1. bool? forDarkTheme,
  2. Background? background,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateSelectedBackground copyWith({
  bool? forDarkTheme,
  Background? background,
  dynamic extra,
  int? clientId,
}) =>
    UpdateSelectedBackground(
      forDarkTheme: forDarkTheme ?? this.forDarkTheme,
      background: background ?? this.background,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );