storage_all_ggez 1.0.1
storage_all_ggez: ^1.0.1 copied to clipboard
Access most of the storage information with ease any time you want
storage_all_ggez #
The ultimate auto-configuring Android device storage blocks and telemetry package.
Features #
- Total data capacity byte metrics.
- Real-time active drive sector availability mapping space tracking.
- Underlying POSIX Linux structural block sectors and unassigned index inodes.
Usage #
Initialize or execute metrics refreshes via a single line, exactly matching the battery-package workflow layer context patterns:
import 'package:storage_all_ggez/storage_all_ggez.dart';
StorageAllGgez.refresh(
onNotify: () {
print(StorageAllGgez.totalBytes);
print(StorageAllGgez.freeInodes);
},
onStateChanged: (loading) => print("Loading: \$loading"),
);