FilePickerWidget constructor

FilePickerWidget({
  1. Key? key,
  2. required IconData icon,
  3. required String title,
  4. required void onClearPressed()?,
  5. required void onTap()?,
  6. RxList? appList,
  7. bool showDeleteIcon = true,
})

Implementation

FilePickerWidget(
    {super.key,
    required this.icon,
    required this.title,
    required this.onClearPressed,
    required this.onTap,
    this.appList,
    this.showDeleteIcon = true});