RhPickerListItem constructor

const RhPickerListItem({
  1. Key? key,
  2. required String path,
  3. Widget? title,
  4. Widget? subtitle,
  5. dynamic onRemove()?,
  6. Widget? removeIcon,
  7. PickedItemDecoration? pickedItemDecoration,
})

Implementation

const RhPickerListItem({
  Key? key,
  required this.path,
  this.title,
  this.subtitle,
  this.onRemove,
  this.removeIcon,
  this.pickedItemDecoration,
}) : super(key: key);