getStorageTotalSpaceInGB property

Future<double> getStorageTotalSpaceInGB

Implementation

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