UIStack constructor

UIStack({
  1. Iterable<Any>? children,
})

Implementation

factory UIStack({
  $core.Iterable<$2.Any>? children,
}) {
  final result = create();
  if (children != null) result.children.addAll(children);
  return result;
}