ButtonWidgetData constructor

ButtonWidgetData({
  1. String type = "button",
  2. Cell? cell,
  3. List<WidgetData>? children,
  4. required Value label,
  5. Font? font,
  6. Color? foregroundColor,
  7. Color? backgroundColor,
  8. Insets? padding,
  9. String? onClick,
})

Implementation

ButtonWidgetData({super.type = "button", super.cell, super.children, required this.label, this.font, this.foregroundColor, this.backgroundColor, this.padding, this.onClick});