MaterialRaisedButtonData constructor

MaterialRaisedButtonData({
  1. Key? widgetKey,
  2. Widget? child,
  3. Color? color,
  4. VoidCallback? onPressed,
  5. EdgeInsetsGeometry? padding,
  6. Color? disabledColor,
  7. Duration? animationDuration,
  8. Brightness? colorBrightness,
  9. double? disabledElevation,
  10. Color? disabledTextColor,
  11. double? elevation,
  12. Color? highlightColor,
  13. double? highlightElevation,
  14. ValueChanged<bool>? onHighlightChanged,
  15. ShapeBorder? shape,
  16. Color? splashColor,
  17. Color? textColor,
  18. ButtonTextTheme? textTheme,
  19. Clip? clipBehavior,
  20. MaterialTapTargetSize? materialTapTargetSize,
})

Implementation

MaterialRaisedButtonData({
  Key? widgetKey,
  Widget? child,
  Color? color,
  VoidCallback? onPressed,
  EdgeInsetsGeometry? padding,
  Color? disabledColor,
  this.animationDuration,
  this.colorBrightness,
  this.disabledElevation,
  this.disabledTextColor,
  this.elevation,
  this.highlightColor,
  this.highlightElevation,
  this.onHighlightChanged,
  this.shape,
  this.splashColor,
  this.textColor,
  this.textTheme,
  this.clipBehavior,
  this.materialTapTargetSize,
}) : super(
          widgetKey: widgetKey,
          child: child,
          color: color,
          onPressed: onPressed,
          padding: padding,
          disabledColor: disabledColor);