LeftScrollItem constructor

const LeftScrollItem({
  1. Key? key,
  2. Function? onTap,
  3. String? text,
  4. Color? color,
  5. Color? textColor,
})

Implementation

const LeftScrollItem({
  Key? key,
  this.onTap,
  this.text,
  this.color,
  this.textColor,
}) : super(key: key);