To avoid NullReferenceExceptions, lots of code in Razor/Blazor looks like this:
@if(someVar != null)
{
<p>use @someVar.Property</p>
}
With NotNull you can use this:
<NotNull Value="someVar">
<p>use @someVar.Property</p>
</NotNull>