AndroidPromptInfos constructor

AndroidPromptInfos({
  1. required String title,
  2. String? subtitle,
  3. String? description,
  4. required String cancelLabel,
  5. required bool confirmationRequired,
})

Implementation

AndroidPromptInfos({
  required this.title,
  this.subtitle,
  this.description,
  required this.cancelLabel,
  required this.confirmationRequired,
});