UIContainer constructor

const UIContainer({
  1. Key? key,
  2. required UIComponent componentData,
  3. List<Widget>? children,
  4. required dynamic containerClickHandler(
    1. String
    ),
})

Implementation

const UIContainer({
  super.key,
  required this.componentData,
  this.children,
  required this.containerClickHandler,
});