getTotalStorageUsed method
Get total storage used by all files
Implementation
Future<int> getTotalStorageUsed() async {
final response = await listFiles();
return response.data
.map((file) => file.sizeBytes)
.fold<int>(0, (sum, bytes) => sum + bytes);
}