aabbContainsPoint method
Returns true if the axis aligned bounding box contains the point.
Implementation
bool aabbContainsPoint(double x, double y) {
final result = SpineBindings.bindings.spine_skeleton_bounds_aabb_contains_point(_ptr, x, y);
return result;
}