LangAppleSignInButton constructor

const LangAppleSignInButton({
  1. Key? key,
  2. required String btnText,
  3. required VoidCallback onPressed,
  4. LangButtonType type = LangButtonType.defaultButton,
  5. LangButtonStyle style = LangButtonStyle.black,
  6. double cornerRadius = 6,
})

Implementation

const LangAppleSignInButton({super.key,
  required this.btnText,
  required this.onPressed,
  this.type = LangButtonType.defaultButton,
  this.style = LangButtonStyle.black,
  this.cornerRadius = 6,
});