copyWith method

DeleteAllRevokedChatInviteLinks copyWith({
  1. int? chatId,
  2. int? creatorUserId,
})

Implementation

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