AttachmentTimeline constructor

AttachmentTimeline(
  1. int frameCount,
  2. int slotIndex
)

Implementation

AttachmentTimeline(int frameCount, this.slotIndex)
    : assert(slotIndex >= 0),
      frames = Float32List(frameCount),
      attachmentNames =
          List<String?>.filled(frameCount, null, growable: false);