PlatformChoiceAction constructor

PlatformChoiceAction({
  1. required String text,
  2. bool isDefaultAction = false,
  3. bool isDestructiveAction = false,
})

Implementation

PlatformChoiceAction({
  required this.text,
  this.isDefaultAction = false,
  this.isDestructiveAction = false,
});