PickDirectory constructor

const PickDirectory({
  1. Key? key,
  2. String title = 'pick directory',
  3. String pickTooltip = 'pick',
  4. String showTooltip = 'show all',
  5. String hideTooltip = 'show normal',
  6. required PickerNav home,
  7. String? current,
  8. bool hide = false,
  9. List<PickerNav>? nav,
  10. bool multiple = false,
})

Implementation

const PickDirectory({
  Key? key,
  this.title = 'pick directory',
  this.pickTooltip = 'pick',
  this.showTooltip = 'show all',
  this.hideTooltip = 'show normal',
  required this.home,
  this.current,
  this.hide = false,
  this.nav,
  this.multiple = false,
}) : super(key: key);