copyWith method

DeleteRevokedChatInviteLink copyWith({
  1. int? chatId,
  2. String? inviteLink,
})

Implementation

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