Navigator.of(context).pop();
Navigator.of(context).pushReplacementNamed('/');
Provider.of<Auth>(context, listen: false).logout();
}
auth.dart:
String? _token;
DateTime? _expiryDate;
String? _userId;
void logout() {
_token = null;
_userId = null;
_expiryDate = null;
notifyListeners();
}
При нажатии красный экран смерти
type 'Null' is not a subtype of type 'String' in type cast
Как победить заразу?
Хотел нулл в коде? А хуй тебе
благодаря, но уже и сам пришел к этому выводу
Обсуждают сегодня