storage_capacity 0.0.7 copy "storage_capacity: ^0.0.7" to clipboard
storage_capacity: ^0.0.7 copied to clipboard

A package facilitates the use of storage capacity. Taking free space, occupied space, total space and device 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;

Occupied Space #

    var occupiedSpace = await StorageCapacity.getOccupiedSpace;

Total Space #

    var totalSpace = await StorageCapacity.getTotalSpace;

Conversions #

    StorageCapacity.toGigaBytes(double.parse(totalSpace.toString()));
    StorageCapacity.toMegaBytes(double.parse(totalSpace.toString()));

Search Capacity #

    dynamic totalSpace = await StorageCapacity.getTotalSpace;
    totalSpace = StorageCapacity.toGigaBytes(double.parse(totalSpace.toString()));
    totalSpace = StorageCapacity.searchCapacity(double.parse(totalSpace));
2
likes
40
pub points
34%
popularity

Publisher

verified publisherkomus.io

A package facilitates the use of storage capacity. Taking free space, occupied space, total space and device capacity.

Homepage
Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on storage_capacity