Profil constructor

const Profil({
  1. Key? key,
  2. required String email,
  3. required String label,
  4. VoidCallback? onHelp,
  5. VoidCallback? onLogout,
})

Implementation

const Profil({
  super.key,
  required this.email,
  required this.label,
  this.onHelp,
  this.onLogout,
});