SignOutButton constructor

const SignOutButton({
  1. Key? key,
  2. FirebaseAuth? auth,
  3. ButtonVariant variant = ButtonVariant.filled,
})

A button that signs out the user when pressed.

Implementation

const SignOutButton({
  super.key,
  this.auth,
  this.variant = ButtonVariant.filled,
});