ProfilePage constructor 
    
      const
      ProfilePage({ - required User user, 
 
- required ProfileService service, 
 
- Key? key, 
 
- ProfileStyle style = const ProfileStyle(), 
 
- Widget? customAvatar, 
 
- bool showAvatar = true, 
 
- Color? avatarBackgroundColor, 
 
- bool showItems = true, 
 
- ItemBuilder? itemBuilder, 
 
- ItemBuilderOptions? itemBuilderOptions, 
 
- String? bottomActionText, 
 
- List<String> prioritizedItems = const [], 
 
- bool showDefaultItems = true, 
 
- Widget wrapItemsBuilder(
 - BuildContext context, 
 
- Widget child
 
)?,  
- WrapViewOptions? wrapViewOptions, 
 
- GlobalKey<FormState>? formKey, 
 
- ChangePasswordConfig changePasswordConfig = const ChangePasswordConfig(enablePasswordChange: false), 
 
})
    
    
    
  Implementation
  const ProfilePage({
  required this.user,
  required this.service,
  super.key,
  this.style = const ProfileStyle(),
  this.customAvatar,
  this.showAvatar = true,
  this.avatarBackgroundColor,
  this.showItems = true,
  this.itemBuilder,
  this.itemBuilderOptions,
  this.bottomActionText,
  this.prioritizedItems = const [],
  this.showDefaultItems = true,
  this.wrapItemsBuilder,
  this.wrapViewOptions,
  this.extraWidgets,
  this.formKey,
  this.changePasswordConfig =
      const ChangePasswordConfig(enablePasswordChange: false),
});