Actions constructor

Actions({
  1. Iterable<Action>? actions,
})

Implementation

factory Actions({
  $core.Iterable<Action>? actions,
}) {
  final $result = create();
  if (actions != null) {
    $result.actions.addAll(actions);
  }
  return $result;
}