MountInfo constructor
MountInfo({})
Creates a mount info instance with storage details.
API users typically do not create instances directly.
Parameters
path: The path to the mount point.freeSpace: The free space in bytes.totalSpace: The total space in bytes.internalPath: Whether this is an internal storage path.onlineCachePath: Whether this path is used for online caching.
Implementation
MountInfo({
required this.path,
required this.freeSpace,
required this.totalSpace,
required this.internalPath,
required this.onlineCachePath,
});