CupertinoTextButtonData constructor

CupertinoTextButtonData(
  1. {Key? widgetKey,
  2. Widget? child,
  3. VoidCallback? onPressed,
  4. Color? color,
  5. EdgeInsetsGeometry? padding,
  6. Color? disabledColor,
  7. BorderRadius? borderRadius,
  8. double? minSize,
  9. double? pressedOpacity,
  10. AlignmentGeometry? alignment,
  11. bool originalStyle = false}
)

Implementation

CupertinoTextButtonData({
  super.widgetKey,
  super.child,
  super.onPressed,
  this.color,
  this.padding,
  this.disabledColor,
  this.borderRadius,
  this.minSize,
  this.pressedOpacity,
  this.alignment,
  this.originalStyle = false,
});