ProfileHeader constructor

const ProfileHeader({
  1. Key? key,
  2. String? coverUrl,
  3. String? avatarUrl,
  4. ImageProvider<Object>? imageCoverProvider,
  5. ImageProvider<Object>? imageAvatarProvider,
  6. VoidCallback? onCoverTap,
  7. VoidCallback? onAvatarTap,
  8. bool isEditable = false,
})

Implementation

const ProfileHeader({
  super.key,
  this.coverUrl,
  this.avatarUrl,
  this.imageCoverProvider,
  this.imageAvatarProvider,
  this.onCoverTap,
  this.onAvatarTap,
  this.isEditable = false,
});