getExternalStorageTotalSpace property

Future<int> getExternalStorageTotalSpace

Implementation

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