OpenWComponent constructor

const OpenWComponent({
  1. Key? key,
  2. required dynamic state,
  3. required List<CNode> componentChildren,
})

Implementation

const OpenWComponent({
  super.key,
  required this.state,
  required this.componentChildren,
});