getLargeMemoryFiles function
Get memory files that exceed the size threshold.
Implementation
List<MemoryFileInfo> getLargeMemoryFiles(List<MemoryFileInfo> files) =>
files.where((f) => f.isLarge).toList();
Get memory files that exceed the size threshold.
List<MemoryFileInfo> getLargeMemoryFiles(List<MemoryFileInfo> files) =>
files.where((f) => f.isLarge).toList();