signInWithTwitter method

Future<AuthResponse<T>> signInWithTwitter({
  1. Object? args,
  2. String? id,
  3. bool notifiable = true,
})
inherited

Implementation

Future<AuthResponse<T>> signInWithTwitter({
  Object? args,
  String? id,
  bool notifiable = true,
}) {
  return _signInWithOAuth(
    provider: 'TWITTER',
    doneMsg: msg.signInWithTwitter.done,
    failureMsg: msg.signInWithTwitter.failure,
    signIn: () => delegate.signInWithTwitter(),
    args: args,
    id: id,
    notifiable: notifiable,
  );
}