FingerprintPromptOptions constructor
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,
);
}