PlexDataListItem constructor

const PlexDataListItem({
  1. String? id,
  2. required String title,
  3. String? subtitle,
  4. Widget? trailing,
  5. String? value,
  6. String? meta,
  7. String? delta,
  8. PlexDataListDirection direction = PlexDataListDirection.flat,
  9. double? progress,
  10. IconData? icon,
  11. PlexDataListTone tone = PlexDataListTone.neutral,
  12. String? avatarName,
  13. String? tag,
  14. bool done = false,
  15. Color? color,
})

Implementation

const PlexDataListItem({
  this.id,
  required this.title,
  this.subtitle,
  this.trailing,
  this.value,
  this.meta,
  this.delta,
  this.direction = PlexDataListDirection.flat,
  this.progress,
  this.icon,
  this.tone = PlexDataListTone.neutral,
  this.avatarName,
  this.tag,
  this.done = false,
  this.color,
});