storage_capacity

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

storage capacity

Storage Capacity #
Package created to facilitate the manipulation of storage space on Android and IOS. Informing the space available for use, the space occupied, the total storage space, conversion facilities to MB and GB. And ease to discover the device's GB capacity
Usage #
Free Space #
var freeSpace = await StorageCapacity.getFreeSpace;
copied to clipboard
Occupied Space #
var occupiedSpace = await StorageCapacity.getOccupiedSpace;
copied to clipboard
Total Space #
var totalSpace = await StorageCapacity.getTotalSpace;
copied to clipboard
Conversions #
StorageCapacity.toGigaBytes(double.parse(totalSpace.toString()));
StorageCapacity.toMegaBytes(double.parse(totalSpace.toString()));
copied to clipboard
Search Capacity #
dynamic totalSpace = await StorageCapacity.getTotalSpace;
totalSpace = StorageCapacity.toGigaBytes(double.parse(totalSpace.toString()));
totalSpace = StorageCapacity.searchCapacity(double.parse(totalSpace));
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.