MountInfo constructor

MountInfo({
  1. required String path,
  2. required int freeSpace,
  3. required int totalSpace,
  4. required bool internalPath,
  5. required bool onlineCachePath,
})

Implementation

MountInfo({
  required this.path,
  required this.freeSpace,
  required this.totalSpace,
  required this.internalPath,
  required this.onlineCachePath,
});