AtomicSheetAction<T> constructor

const AtomicSheetAction<T>({
  1. required String label,
  2. T? value,
  3. IconData? icon,
  4. VoidCallback? onTap,
  5. bool isDestructive = false,
  6. bool isEnabled = true,
})

Implementation

const AtomicSheetAction({
  required this.label,
  this.value,
  this.icon,
  this.onTap,
  this.isDestructive = false,
  this.isEnabled = true,
});