EntriesCallback typedef
EntriesCallback =
void Function(List<EntryMetadata> , bool)
Success callback for the onReadDirectoryRequested
event. If more
entries will be returned, then hasMore
must be true, and it
has to be called again with additional entries. If no more entries are
available, then hasMore
must be set to false.
Implementation
typedef EntriesCallback = void Function(
List<EntryMetadata>,
bool,
);