resumes property
List<ManifestEntry>
get
resumes
Entries present only partially (the transfer will resume them).
Implementation
List<ManifestEntry> get resumes => [
for (final e in entries)
if ((have[e.path] ?? 0) > 0 && (have[e.path] ?? 0) < e.size) e,
];