copyWith method

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

Implementation

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