signInWithCredential method

  1. @override
Future<void> signInWithCredential({
  1. required AuthCredential credential,
})
override

Implementation

@override
Future<void> signInWithCredential(
    {required AuthCredential credential}) async {
  try {
    await firebaseAuth.signInWithCredential(credential);
  } catch (exception, stackTrace) {
    left(_resolveException(
        exception: exception,
        stackTrace: stackTrace,
        locale: 'signInWithCredential',
        sigInType: SigInType.phone));
  }
}