getStorageUsedSpaceInMB property

Future<double> getStorageUsedSpaceInMB

Implementation

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