NiceViewComponent constructor
- required String id,
- required NiceViewComponentType type,
- String? title,
- Map<
String, dynamic> config = const {}, - List<
NiceViewComponent> children = const [], - int flex = 1,
Implementation
NiceViewComponent({
required this.id,
required this.type,
this.title,
this.config = const {},
this.children = const [],
this.flex = 1,
});