getStorageUsedSpace property

Future<int> getStorageUsedSpace

Implementation

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