Profile

ProfileCategory

class ProfileCategory {
  final String title;
  final List<ProfileItem> items;

  ProfileCategory({
    required this.title;
    required this.items;
  })
}

ProfileItem

class ProfileItem {
  final String title;
  final String icon;
  final String id;
  final Color textColor;

  ProfileItem({
    required this.title;
    required this.icon;
    required this.id;
    this.textColor = const PSColors.neutrals1000;
  })
}