signInWithCustomToken method
Implementation
@override
Future<Either<AuthServiceSignInFailure, Unit>> signInWithCustomToken(String customToken) async {
try {
await retryIt(
() async => await _fbAuth.signInWithCustomToken(customToken),
maxAttempts: 3,
);
return right(unit);
} catch (e) {
loge(e);
return left(AuthServiceSignInFailure.unexpected);
}
}