ProfileCard constructor

ProfileCard({
  1. Key? key,
  2. double? width,
  3. BoxDecoration? profileCardDecoration,
  4. String? image,
  5. String? name,
  6. String? email,
  7. DateTime? dateTime,
  8. Function? onClick,
})

Implementation

ProfileCard({
  Key? key,
  this.width,
  this.companyLogo,
  this.profileCardDecoration,
  this.image,
  this.name,
  this.email,
  this.dateTime,
  this.onClick,
}) : super(key: key);