AtomicTextListItem constructor

const AtomicTextListItem({
  1. required String text,
  2. String? subText,
  3. TextStyle? textStyle,
  4. TextStyle? subTextStyle,
  5. VoidCallback? onTap,
  6. bool enabled = true,
  7. int? maxLines,
  8. TextOverflow? overflow,
})

Implementation

const AtomicTextListItem({
  required this.text,
  this.subText,
  this.textStyle,
  this.subTextStyle,
  this.onTap,
  this.enabled = true,
  this.maxLines,
  this.overflow,
});