LabelWidgetData constructor

LabelWidgetData({
  1. String type = "label",
  2. Cell? cell,
  3. List<WidgetData>? children,
  4. required Value label,
  5. Color? color,
  6. Color? backgroundColor,
  7. Font? font,
})

Implementation

LabelWidgetData({super.type = "label", super.cell, super.children, required this.label, this.color, this.backgroundColor, this.font});