in src/Microsoft.Azure.WebJobs.Extensions.Dapr/Triggers/DaprTopicTriggerAttribute.cs [22:30]
public DaprTopicTriggerAttribute(string pubSubName)
{
if (pubSubName is null)
{
throw new ArgumentNullException(nameof(pubSubName));
}
this.PubSubName = pubSubName;
}