AutomationBatch constructor

AutomationBatch(
  1. Context context
)

Create an instance.

Implementation

AutomationBatch(final Context context)
    : _commands = [],
      super(context.synthizer) {
  synthizer.check(
    synthizer.synthizer.syz_createAutomationBatch(
      handle,
      context.handle.value,
      nullptr,
      synthizer.userdataFreeCallbackPointer,
    ),
  );
}