Storage constructor

Storage({
  1. required String path,
  2. required int used,
  3. required int free,
  4. required int total,
})

Implementation

Storage({
  required this.path,
  required this.used,
  required this.free,
  required this.total,
});