Я запускаю flutter на реальном устройстве, и print(), log(), debugprint() не работают.
Есть ли альтернатива?
try {
final email = _emailController.text;
final password = _passwordController.text;
final userCredential = FirebaseAuth.instance.signInWithEmailAndPassword(email: email, password: password);
print(userCredential);
} on FirebaseAuthException catch (e) {
log(e.code);
debugprint(e.code);
print(e.code);
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... droid-devi
Мобильная версия