check method
Implementation
@override
void check(
DcqRegistry registry,
) {
registry.addNullAwareElement((node) {
final type = node.value.staticType;
if (type != null && type.nullabilitySuffix == NullabilitySuffix.none) {
reportAtNode(node);
}
});
}