Get the user subscription status for a dapp
Get the user subscription status for a dapp-
function isSubscribed(
bytes32 _dappId,
uint256 listID,
address _user
) view external returns (bool);The function will return a boolean value:
trueif the user is subscribedfalseif the user is not subscribed
Last updated