formatDirSize static method
Implementation
static Future<String> formatDirSize({
String path = '',
bool lowerCase = false,
int fixed = 1,
}) async {
final result = await getDirSize(path);
return formatSize(result, lowerCase: lowerCase, fixed: fixed);
}