copyWith method

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

Implementation

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