getStorageUsedSpaceInGB property

Future<double> getStorageUsedSpaceInGB

Implementation

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