insufficientStorage static method

SDKException insufficientStorage(
  1. int required,
  2. int available
)

Implementation

static SDKException insufficientStorage(
  int required,
  int available,
) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_INSUFFICIENT_STORAGE,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_IO,
  message:
      'Insufficient storage: ${_formatBytes(required)} required, ${_formatBytes(available)} available',
);