copyWith method

ReadAllChatMentions copyWith({
  1. int? chatId,
})

Implementation

ReadAllChatMentions copyWith({
  int? chatId,
}) =>
    ReadAllChatMentions(
      chatId: chatId ?? this.chatId,
    );