FingerprintPromptOptions constructor

FingerprintPromptOptions({
  1. String? description,
  2. String? cancelButtonText,
  3. String? fallbackButtonText,
})

Default constructor for FingerprintPromptOptions.

Params:

  • description: an optional description to be used to prompt the user.
  • cancelButtonText: the cancel button text.
  • fallbackButtonText: the fallback button text.

Implementation

factory FingerprintPromptOptions({
  String? description,
  String? cancelButtonText,
  String? fallbackButtonText,
}) {
  return FingerprintPromptOptionsImpl(
    description: description,
    cancelButtonText: cancelButtonText,
    fallbackButtonText: fallbackButtonText,
  );
}