structUpdateFrameCount method

  1. @override
void structUpdateFrameCount(
  1. int frameCount
)
override

Implementation

@override
void structUpdateFrameCount(int frameCount) => structOnOp((p) {
  if (this.frameCount != frameCount) {
    this.frameCount = frameCount;
    structSyncFromMemory();
  }
});