storageFull static method

SDKException storageFull([
  1. String? message
])

Implementation

static SDKException storageFull([String? message]) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_STORAGE_FULL,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_IO,
  message: message ?? 'Device storage is full.',
);