PersonWidget constructor

const PersonWidget(
  1. Person person, {
  2. bool reverse = false,
  3. Key? key,
  4. void onTap()?,
})

Implementation

const PersonWidget(
  this.person, {
  this.reverse = false,
  super.key,
  this.onTap,
});