copyWith method

SetChatTheme copyWith({
  1. int? chatId,
  2. String? themeName,
})

Implementation

SetChatTheme copyWith({
  int? chatId,
  String? themeName,
}) =>
    SetChatTheme(
      chatId: chatId ?? this.chatId,
      themeName: themeName ?? this.themeName,
    );