AndroidPromptInfo constructor

const AndroidPromptInfo({
  1. String title = 'Authenticate to unlock data',
  2. String? subtitle,
  3. String? description,
  4. String negativeButton = 'Cancel',
  5. bool confirmationRequired = true,
})

Implementation

const AndroidPromptInfo({
  this.title = 'Authenticate to unlock data',
  this.subtitle,
  this.description,
  this.negativeButton = 'Cancel',
  this.confirmationRequired = true,
});