Convert file sizes to human-readable format
sizes
print(hrSizes([30, 5300, 2621440])); // ['30B', '5.2K', '2.5M']
List<String> hrSizes(List<int> sizes) => sizes.map((e) => humanReadableSize(e)).toList();