SessionStorage constructor

SessionStorage({
  1. required String projectId,
  2. SessionStorageStore? store,
})

Implementation

SessionStorage({required String projectId, SessionStorageStore? store})
    : _projectId = projectId,
      _store = store ?? SessionStoragePlatformStore.ifSupported() ?? const SessionStorageStore();