CustomPersonVerticalTile constructor

const CustomPersonVerticalTile({
  1. Key? key,
  2. String? imageLocation,
  3. String? title,
  4. String? subTitle,
  5. bool isTopRight = false,
  6. IconData? icon,
  7. Function? onCrossPressed,
  8. bool isAssetImage = true,
  9. Uint8List? imageIntList,
  10. String? atsign,
})

Implementation

const CustomPersonVerticalTile(
    {Key? key,
    this.imageLocation,
    this.title,
    this.subTitle,
    this.isTopRight = false,
    this.icon,
    this.onCrossPressed,
    this.isAssetImage = true,
    this.imageIntList,
    this.atsign})
    : super(key: key);