MaterialTextButtonData constructor

MaterialTextButtonData({
  1. Key? widgetKey,
  2. Widget? child,
  3. VoidCallback? onPressed,
  4. VoidCallback? onLongPress,
  5. FocusNode? focusNode,
  6. ButtonStyle? style,
  7. bool? autofocus,
  8. Clip? clipBehavior,
  9. Widget? icon,
  10. ValueChanged<bool>? onHover,
  11. ValueChanged<bool>? onFocusChange,
  12. MaterialStatesController? statesController,
})

Implementation

MaterialTextButtonData(
    {super.widgetKey,
    super.child,
    super.onPressed,
    this.onLongPress,
    this.focusNode,
    this.style,
    this.autofocus,
    this.clipBehavior,
    this.icon,
    this.onHover,
    this.onFocusChange,
    this.statesController});