copyWith method
Implementation
SetChatTitle copyWith({
int? chatId,
String? title,
}) => SetChatTitle(
chatId: chatId ?? this.chatId,
title: title ?? this.title,
);
SetChatTitle copyWith({
int? chatId,
String? title,
}) => SetChatTitle(
chatId: chatId ?? this.chatId,
title: title ?? this.title,
);