CustomPersonHorizontalTile constructor

CustomPersonHorizontalTile({
  1. List? image,
  2. String? title,
  3. String? subTitle,
  4. bool isTopRight = false,
  5. IconData? icon,
})

Implementation

CustomPersonHorizontalTile({
  this.image,
  this.title,
  this.subTitle,
  this.isTopRight = false,
  this.icon,
}) {
  if (image != null) {
    var intList = image!.cast<int>();
    image = Uint8List.fromList(intList);
  }
}