ProfileSummaryHeader constructor

const ProfileSummaryHeader({
  1. Key? key,
  2. required String title,
  3. required String imageUrl,
  4. VoidCallback? onTap,
  5. List<Widget>? actions,
})

Implementation

const ProfileSummaryHeader({
  super.key,
  required this.title,
  required this.imageUrl,
  this.onTap,
  this.actions,
});