PersonHorizontal constructor

const PersonHorizontal({
  1. Key? key,
  2. String? title,
  3. String? subTitle,
  4. String? atsign,
  5. Function? onDelete,
})

Implementation

const PersonHorizontal({
  Key? key,
  this.title,
  this.subTitle,
  this.atsign,
  this.onDelete,
}) : super(key: key);