BiometricLoginButton constructor
const
BiometricLoginButton({})
Constructs an instance of BiometricLoginButton.
Parameters:
childRender: A function that renders the child widget.reason: The reason for biometric authentication.onAuthenticated: A callback function that handles the authentication result.
Implementation
const BiometricLoginButton({
super.key,
required this.childRender,
required this.reason,
required this.onAuthenticated,
});