SweetSheetAction constructor

SweetSheetAction({
  1. required String title,
  2. required VoidCallback onPressed,
  3. IconData? icon,
  4. Color color = Colors.white,
})

Implementation

SweetSheetAction({
  required this.title,
  required this.onPressed,
  this.icon,
  this.color = Colors.white,
});