newPointAttachment method
Implementation
@override
PointAttachment? newPointAttachment(Skin skin, String placeholder, String name) {
final result = SpineBindings.bindings.spine_atlas_attachment_loader_new_point_attachment(
_ptr, skin.nativePtr.cast(), placeholder.toNativeUtf8().cast<Char>(), name.toNativeUtf8().cast<Char>());
return result.address == 0 ? null : PointAttachment.fromPointer(result);
}