signInWithCredential method
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));
}
}