ProfilePage constructor

const ProfilePage(
  1. {required User user,
  2. required ProfileService service,
  3. Key? key,
  4. ProfileStyle style = const ProfileStyle(),
  5. Widget? customAvatar,
  6. bool showAvatar = true,
  7. Color? avatarBackgroundColor,
  8. bool showItems = true,
  9. ItemBuilder? itemBuilder,
  10. ItemBuilderOptions? itemBuilderOptions,
  11. String? bottomActionText,
  12. List<String> prioritizedItems = const [],
  13. bool showDefaultItems = true,
  14. Widget wrapItemsBuilder(
    1. BuildContext context,
    2. Widget child
    )?,
  15. WrapViewOptions? wrapViewOptions,
  16. Map<String, Widget>? extraWidgets,
  17. GlobalKey<FormState>? formKey,
  18. 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),
});