AlertDialogAction<T> constructor

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

Implementation

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