ActionSheetItem constructor

const ActionSheetItem({
  1. required String title,
  2. required void onPressed(),
  3. Widget? icon,
})

Implementation

const ActionSheetItem(
    {required this.title, required this.onPressed, this.icon});