ActionScope constructor

ActionScope({
  1. Iterable<String>? actions,
})

Implementation

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