StyledCupertinoButton constructor

const StyledCupertinoButton({
  1. Key? key,
  2. required String label,
  3. EdgeInsets padding = EdgeInsets.zero,
  4. void onPressed()?,
  5. TextStyle? style,
})

Implementation

const StyledCupertinoButton({
  super.key,
  required this.label,
  this.padding = EdgeInsets.zero,
  this.onPressed,
  this.style,
});