copyWith method

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

Implementation

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