insufficientStorage static method
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',
);