NiceProfileCard constructor

const NiceProfileCard({
  1. Key? key,
  2. required String name,
  3. String? subtitle,
  4. String? imageUrl,
  5. String? email,
  6. String? phone,
  7. Map<String, String>? additionalInfo,
  8. VoidCallback? onTap,
  9. VoidCallback? onEdit,
  10. List<Widget>? actions,
  11. bool compact = false,
  12. bool showSocialLinks = false,
  13. Map<String, String>? socialLinks,
})

Implementation

const NiceProfileCard({
  super.key,
  required this.name,
  this.subtitle,
  this.imageUrl,
  this.email,
  this.phone,
  this.additionalInfo,
  this.onTap,
  this.onEdit,
  this.actions,
  this.compact = false,
  this.showSocialLinks = false,
  this.socialLinks,
});