AutomationEventD constructor
AutomationEventD({
- WasmStructPointer<
AutomationEventD> ? originalPointer, - int frame = 0,
- int type = 0,
- List<
int> ? params,
Implementation
AutomationEventD({
super.originalPointer,
int frame = 0,
int type = 0,
List<int>? params,
}) :
_frame = frame,
_type = type
{
_params = .new(
params ?? .filled(paramsCount, 0),
originalPointer == null ? null : .new(wasmReader(_o[.params]).pointer())
);
}