FLCupertinoActionSheet constructor

const FLCupertinoActionSheet({
  1. Key? key,
  2. Color? backgroundColor,
  3. FLCupertinoActionSheetStyle style = FLCupertinoActionSheetStyle.roundedCard,
  4. BorderRadius? borderRadius,
  5. required Widget child,
  6. CupertinoActionSheetAction? cancelButton,
})

Implementation

const FLCupertinoActionSheet(
    {Key? key,
    this.backgroundColor,
    this.style = FLCupertinoActionSheetStyle.roundedCard,
    this.borderRadius,
    required this.child,
    this.cancelButton})
    : super(key: key);