PickFile constructor

const PickFile({
  1. Key? key,
  2. String title = 'pick file',
  3. String pickTooltip = 'pick',
  4. String showTooltip = 'show all',
  5. String hideTooltip = 'show normal',
  6. String filterTooltip = 'filter',
  7. required PickerNav home,
  8. String? current,
  9. bool hide = false,
  10. List<PickerNav>? nav,
  11. bool multiple = false,
  12. List<Tuple3<String, String, bool?>>? filter,
  13. int initialFilter = 0,
})

Implementation

const PickFile({
  Key? key,
  this.title = 'pick file',
  this.pickTooltip = 'pick',
  this.showTooltip = 'show all',
  this.hideTooltip = 'show normal',
  this.filterTooltip = 'filter',
  required this.home,
  this.current,
  this.hide = false,
  this.nav,
  this.multiple = false,
  this.filter,
  this.initialFilter = 0,
}) : super(key: key);