`forEach` is probably better in this context, but ...
# getting-started
v
forEach
is probably better in this context, but
!!
is also an option
Copy code
if(boxes != null) {
    for(b in boxes!!) {
                
    }
}