MapPbx constructor

MapPbx({
  1. List<NamedComponent> children = const [],
  2. required String uuid,
  3. String? comment,
  4. bool isInline = false,
})

Implementation

MapPbx({
  super.children,
  required super.uuid,
  super.comment,
  this.isInline = false,
});