getTimelineAttachment method

Attachment<Pointer<NativeType>>? getTimelineAttachment()

Timelines for the timeline attachment are also applied to this attachment. May return null if not attachment-specific timelines should be applied.

Implementation

Attachment? getTimelineAttachment() {
  final attachment = _bindings.spine_vertex_attachment_get_timeline_attachment(_attachment.cast());
  if (_attachment.address == nullptr.address) return null;
  return Attachment._toSubclass(attachment);
}