visitForElement method
Implementation
@override
void visitForElement(ForElement node) {
final declaredType = node.getCollectionElementType();
if (declaredType == null) return;
_checkCollectionElement(node.body, declaredType);
}
@override
void visitForElement(ForElement node) {
final declaredType = node.getCollectionElementType();
if (declaredType == null) return;
_checkCollectionElement(node.body, declaredType);
}