MemoryFileSelector constructor

const MemoryFileSelector({
  1. Key? key,
  2. required void onSelect(
    1. String path
    ),
  3. required VoidCallback onCancel,
})

Implementation

const MemoryFileSelector({
  super.key,
  required this.onSelect,
  required this.onCancel,
});