signInWithTwiter static method
Future<User?>
signInWithTwiter(
- BuildContext context, {
- dynamic onError()?,
- dynamic onSignInSuccessful()?,
Initiates a Twitter OAuth SignUp Flow based on the OAuthEngine Implementation
context
is necessary
onError
is a callback that is invoked when an error is encountered
onSignInSuccessful
is a callback that is invoked when the signIn is successful.
It provides a User which you can use to perform other actions.
Implementation
static Future<User?> signInWithTwiter(
BuildContext context, {
Function(String)? onError,
Function(User)? onSignInSuccessful,
}) async {
final provider = Provider.of<FireAuthProvider>(context, listen: false);
return await provider.signInWithTwitter(
onError: onError,
onSignInSuccessful: onSignInSuccessful,
);
}