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