UIComponent constructor
UIComponent({
- int? type,
- String? id,
- required List<
Properties> ? properties, - List<
UIComponent> ? widgets,
Implementation
UIComponent({
this.type,
this.id,
required this.properties,
this.widgets,
});