class HomePage extends StatefulWidget {
final String uid;
HomePage({Key key, @required this.uid}) : super(key: key);
final FirebaseUser user;
HomePage({this.user});
@override
_HomePageState createState() => _HomePageState(uid);
}
The default constructor is already defined. Try giving one of the constructors a name.dart(duplicate_constructor)
i want this two construters to pass on any one can help me in his