getEndSlot method

SlotData? getEndSlot()

Clipping is performed between the clipping attachment's slot and the end slot. If null clipping is done until the end of the skeleton's rendering.

Implementation

SlotData? getEndSlot() {
  final endSlot = _bindings.spine_clipping_attachment_get_end_slot(_attachment);
  if (endSlot.address == nullptr.address) return null;
  return SlotData._(endSlot);
}