copyWith method

SetChatTitle copyWith({
  1. int? chatId,
  2. String? title,
})

Implementation

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