ProfileCard constructor

const ProfileCard({
  1. Key? key,
  2. required String name,
  3. String? avatarUrl,
  4. String? title,
  5. String? subtitle,
  6. String? text,
  7. String? actionText,
  8. String? actionUrl,
})

Implementation

const ProfileCard({
  super.key,
  required this.name,
  this.avatarUrl,
  this.title,
  this.subtitle,
  this.text,
  this.actionText,
  this.actionUrl,
});