import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
class AuthMethods {
final FirebaseAuth _auth = FirebaseAuth.instance;
User? _userFromUser(User user) {
return user != null ? User(userId: user.uid) : null;
}
It used to work, this block of code is not working now, where am I going wrong? please help me