SectionPbx constructor

SectionPbx({
  1. required String name,
  2. List<NamedComponent> children = const [],
})

Implementation

SectionPbx({
  required this.name,
  super.children,
}) : super(uuid: name, comment: name);