MountInfo constructor
Constructor for MountInfo.
Parameters
- IN path The path to the mount point.
- IN freeSpace The free space in bytes.
- IN totalSpace The total space in bytes.
- IN internalPath Whether this is an internal path.
- IN onlineCachePath Whether this is an online cache path.
Implementation
MountInfo({
required this.path,
required this.freeSpace,
required this.totalSpace,
required this.internalPath,
required this.onlineCachePath,
});