ProfileItem constructor

const ProfileItem({
  1. required String text,
  2. required String onTapRoute,
  3. required ProfileItemType section,
  4. Object? onTapRouteArguments,
  5. bool isComingSoon = false,
  6. Widget? tabletWidget,
})

Implementation

const ProfileItem({
  required this.text,
  required this.onTapRoute,
  required this.section,
  this.onTapRouteArguments,
  this.isComingSoon = false,
  this.tabletWidget,
});