dataStoreDelegate
The DataStoreDelegate instance that holds this module's DataStore.
For a module-owned DataStore, declare a new instance directly:
override val dataStoreDelegate = DataStoreDelegate()Content copied to clipboard
For a shared DataStore (used by multiple modules), point to a shared top-level val declared in a common core module:
override val dataStoreDelegate = myModuleDataStoreDelegateContent copied to clipboard