AutomationEventD constructor
AutomationEventD({
- Pointer<
AutomationEventC> ? originalPointer, - int frame = 0,
- AutomationEventType type = .EVENT_NONE,
- List<
int> ? params,
Implementation
AutomationEventD({
super.originalPointer,
int frame = 0,
AutomationEventType type = .EVENT_NONE,
List<int>? params,
}) :
_frame = frame,
_type = type
{
_params = .new(params ?? .filled(paramsCount, 0), originalPointer?.ref.params);
}