SetTriggerActionsRequest constructor

SetTriggerActionsRequest({
  1. FlowType? flowType,
  2. TriggerType? triggerType,
  3. Iterable<String>? actionIds,
})

Implementation

factory SetTriggerActionsRequest({
  FlowType? flowType,
  TriggerType? triggerType,
  $core.Iterable<$core.String>? actionIds,
}) {
  final result = create();
  if (flowType != null) result.flowType = flowType;
  if (triggerType != null) result.triggerType = triggerType;
  if (actionIds != null) result.actionIds.addAll(actionIds);
  return result;
}