XBottomSheetAction<T> constructor

const XBottomSheetAction<T>({
  1. required String label,
  2. required T value,
  3. Widget? icon,
  4. String? subtitle,
  5. bool isDestructive = false,
  6. bool enabled = true,
})

Implementation

const XBottomSheetAction({
  required this.label,
  required this.value,
  this.icon,
  this.subtitle,
  this.isDestructive = false,
  this.enabled = true,
});