CupertinoButtonData constructor

CupertinoButtonData({
  1. Key? widgetKey,
  2. Widget? child,
  3. Color? color,
  4. VoidCallback? onPressed,
  5. EdgeInsetsGeometry? padding,
  6. Color? disabledColor,
  7. BorderRadius? borderRadius,
  8. double? minSize,
  9. double? pressedOpacity,
})

Implementation

CupertinoButtonData(
    {Key? widgetKey,
    Widget? child,
    Color? color,
    VoidCallback? onPressed,
    EdgeInsetsGeometry? padding,
    Color? disabledColor,
    this.borderRadius,
    this.minSize,
    this.pressedOpacity})
    : super(
          widgetKey: widgetKey,
          child: child,
          color: color,
          onPressed: onPressed,
          padding: padding,
          disabledColor: disabledColor);