AuthActionButton constructor
const
AuthActionButton({
- Key? key,
- String? title,
- required void onPressed(
- BuildContext context
- ButtonStyle? buttonStyle,
- Icon? icon,
- Axis direction = Axis.vertical,
- required AuthFlowScope scope,
- bool showError = true,
Implementation
const AuthActionButton({
super.key,
this.title,
required this.onPressed,
this.buttonStyle,
this.icon,
this.direction = Axis.vertical,
required this.scope,
this.showError = true,
});