SignInWithTikTok constructor

const SignInWithTikTok({
  1. required Function onPressed,
  2. Color? buttonColor,
  3. Color? fontColor,
  4. double? fontSize,
  5. String? title,
  6. Key? key,
})

Implementation

const SignInWithTikTok(
    {required this.onPressed,
    this.buttonColor,
    this.fontColor,
    this.fontSize,
    this.title,
    Key? key})
    : super(key: key);