SPListItem constructor

const SPListItem({
  1. Key? key,
  2. String? left,
  3. String? right,
  4. Function? onTap,
  5. bool showFlag = false,
  6. double? height,
})

Implementation

const SPListItem({
  Key? key,
  this.left,
  this.right,
  this.onTap,
  this.showFlag = false,
  this.height,
}) : super(key: key);