CoreWidget constructor

CoreWidget({
  1. Key? key,
  2. dynamic args,
})

Base Control Widget that handles State flow. args - Arguments passed to this Widget and also to ControlModels.

Check ControlWidget and StateboundWidget.

Implementation

CoreWidget({super.key, dynamic args}) {
  holder.argStore.set(args);
}