aabb property Null safety
Get the Axis Aligned Bounding Box that encompasses the world space scene
Implementation
@override
AABB get aabb {
var width = _artboard.width;
var height = _artboard.height;
return AABB.fromValues(0, 0, width, height);
}