MaterialBottomSheetActionData constructor

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

Implementation

MaterialBottomSheetActionData({
  Widget? child,
  VoidCallback? onPressed,
  this.widgetKey,
  this.color,
  this.colorBrightness,
  this.disabledColor,
  this.disabledTextColor,
  this.highlightColor,
  this.onHighlightChanged,
  this.padding,
  this.shape,
  this.splashColor,
  this.textColor,
  this.textTheme,
  this.clipBehavior,
  this.materialTapTargetSize,
}) : super(child: child, onPressed: onPressed);