Component constructor

Component({
  1. required int type,
  2. required String id,
  3. List<UIComponent>? widgets,
})

Implementation

Component({
  required this.type,
  required this.id,
  this.widgets,
});