Profil constructor
const
Profil({
- Key? key,
- required String email,
- required String label,
- VoidCallback? onHelp,
- VoidCallback? onLogout,
Implementation
const Profil({
super.key,
required this.email,
required this.label,
this.onHelp,
this.onLogout,
});