SheetAction<T> constructor

const SheetAction<T>({
  1. required String label,
  2. T? key,
  3. IconData? icon,
  4. bool isDefaultAction = false,
  5. bool isDestructiveAction = false,
})

Implementation

const SheetAction({
  required this.label,
  this.key,
  this.icon,
  this.isDefaultAction = false,
  this.isDestructiveAction = false,
});