ProfileContent constructor

const ProfileContent({
  1. Key? key,
  2. required User profile,
  3. UserRegistration? registration,
  4. File? avatarFile,
})

Implementation

const ProfileContent({
  super.key,
  required this.profile,
  this.registration,
  this.avatarFile,
});