MountInfo constructor

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

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,
});