AuthActionButton constructor

const AuthActionButton({
  1. Key? key,
  2. String? title,
  3. required void onPressed(
    1. BuildContext context
    ),
  4. ButtonStyle? buttonStyle,
  5. Icon? icon,
  6. Axis direction = Axis.vertical,
  7. required AuthFlowScope scope,
  8. 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,
});