DialogAction constructor

DialogAction({
  1. required String title,
  2. void handler()?,
  3. bool isDefault = false,
  4. bool isDestructive = false,
})

Implementation

DialogAction({required this.title, this.handler, this.isDefault = false, this.isDestructive = false});