getStorageTotalSpace property

Future<int> getStorageTotalSpace

Implementation

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