copyWith method
Implementation
@override
UpdateChatTheme copyWith({
int? chatId,
String? themeName,
dynamic extra,
int? clientId,
}) => UpdateChatTheme(
chatId: chatId ?? this.chatId,
themeName: themeName ?? this.themeName,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);