SheetAction constructor

SheetAction({
  1. required dynamic onPressed(),
  2. bool isDefaultAction = false,
  3. bool isDestructiveAction = false,
  4. String? title,
  5. Widget? child,
})

Implementation

SheetAction({required this.onPressed, this.isDefaultAction = false, this.isDestructiveAction = false, this.title, this.child});