ProfileCard constructor

ProfileCard({
  1. Key? key,
  2. double? width,
  3. BoxDecoration? profileCardDecoration,
  4. Function? onClick,
})

Implementation

ProfileCard({
  Key? key,
  this.width,
  this.profileCardDecoration,
  this.onClick,
}) : super(key: key);