FarcasterLoginButton constructor

const FarcasterLoginButton({
  1. Key? key,
  2. required VoidCallback onTap,
  3. String? title,
  4. TextAlign textAlign = TextAlign.center,
})

Implementation

const FarcasterLoginButton({
  super.key,
  required this.onTap,
  this.title,
  this.textAlign = TextAlign.center,
});