AndroidPrompt constructor

AndroidPrompt({
  1. required String title,
  2. required String cancelLabel,
  3. String? descriptionLabel,
})

Implementation

AndroidPrompt({
  required this.title,
  required this.cancelLabel,
  this.descriptionLabel,
});