SheetAction<T> constructor

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

Implementation

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