getTotalDiskSpace property
Returns the total amount of disk space on the device.
This is a static method and can be called directly on the DiskSpace
class.
Implementation
static Future<double?> get getTotalDiskSpace async {
final double? totalDiskSpace = await _channel.invokeMethod('getTotalDiskSpace');
return totalDiskSpace;
}