AutomationAppendPropertyCommand constructor

const AutomationAppendPropertyCommand(
  1. Pointer<syz_Handle> targetHandle,
  2. double time,
  3. Properties property,
  4. dynamic value, {
  5. InterpolationTypes interpolationType = InterpolationTypes.linear,
})

Create an instance.

Implementation

const AutomationAppendPropertyCommand(
  final Pointer<syz_Handle> targetHandle,
  final double time,
  this.property,
  this.value, {
  this.interpolationType = InterpolationTypes.linear,
}) : super(targetHandle, time, AutomationCommands.appendProperty);