getLogFolderSize static method

Future<int> getLogFolderSize()

Gets the size of the log storage folder.

  • Returns: A future that completes with the size in bytes.

Implementation

static Future<int> getLogFolderSize() async {
  return _logger.logStorage.getLogFolderSize();
}