NiceViewComponent constructor

NiceViewComponent({
  1. required String id,
  2. required NiceViewComponentType type,
  3. String? title,
  4. Map<String, dynamic> config = const {},
  5. List<NiceViewComponent> children = const [],
  6. int flex = 1,
})

Implementation

NiceViewComponent({
  required this.id,
  required this.type,
  this.title,
  this.config = const {},
  this.children = const [],
  this.flex = 1,
});