signInWithGoogle method
Implementation
Future<void> signInWithGoogle({Function()? callbackSuccess}) async {
_resetState();
final result = await signInWithGoogleUseCase.call();
_stopLoad();
result.fold((l) {
currentError.value = l;
}, (r) {
//todo successSignIn
callbackSuccess?.call();
});
}