getTotalDiskSpace method

Future<int> getTotalDiskSpace()

Returns total disk storage space in bytes.

Implementation

Future<int> getTotalDiskSpace() async {
  return await _channel.invokeMethod('info.getTotalDiskSpace') ?? 0;
}