UIComponent constructor

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

Implementation

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