WidgetData constructor

WidgetData({
  1. required String type,
  2. List<WidgetData>? children,
  3. Cell? cell,
})

Implementation

WidgetData({required this.type, List<WidgetData>? children, this.cell}) : children = children ?? <WidgetData>[];