getStorageTotalSpaceInMB property

Future<double> getStorageTotalSpaceInMB

Implementation

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