getStorageFreeSpaceInMB property

Future<double> getStorageFreeSpaceInMB

Implementation

static Future<double> get getStorageFreeSpaceInMB async {
  final double freeSpace =
      await _channel.invokeMethod('getStorageFreeSpaceInMB');
  return freeSpace;
}