auth method

  1. @override
Future<AuthUser> auth()
override

Make sure you Sent the sms first, and you have the sms code.

Implementation

@override

///Make sure you Sent the sms first, and you have the sms code.
Future<AuthUser> auth() async {
  return AuthProviderUser()..idToken = _idToken;
}