playdate.ui.gridview:drawInRect(Rect)

I'd like to clean up this code bu using listRect directly, like with clipRect:

    if listView.needsDisplay then
        gfx.setClipRect(listRect)
        gfx.clear(gfx.kColorWhite)
        listView:drawInRect(listRect.x, listRect.y, listRect.width, listRect.height)
    end