containsPoint method
Returns true if the polygon contains the point.
Implementation
bool containsPoint(Polygon polygon, double x, double y) {
final result = SpineBindings.bindings.spine_skeleton_bounds_contains_point_1(_ptr, polygon.nativePtr.cast(), x, y);
return result;
}