NiceAccountSettings constructor

const NiceAccountSettings({
  1. Key? key,
  2. String? userName,
  3. String? userEmail,
  4. String? avatarUrl,
  5. VoidCallback? onEditProfile,
  6. VoidCallback? onChangePassword,
  7. VoidCallback? onSignOut,
  8. VoidCallback? onDeleteAccount,
  9. List<Widget>? additionalActions,
})

Implementation

const NiceAccountSettings({
  super.key,
  this.userName,
  this.userEmail,
  this.avatarUrl,
  this.onEditProfile,
  this.onChangePassword,
  this.onSignOut,
  this.onDeleteAccount,
  this.additionalActions,
});