copyWith method
SetChatBackground
copyWith({
- int? chatId,
- InputBackground? background,
- BackgroundType? type,
- int? darkThemeDimming,
Implementation
SetChatBackground copyWith({
int? chatId,
InputBackground? background,
BackgroundType? type,
int? darkThemeDimming,
}) =>
SetChatBackground(
chatId: chatId ?? this.chatId,
background: background ?? this.background,
type: type ?? this.type,
darkThemeDimming: darkThemeDimming ?? this.darkThemeDimming,
);