init static method

void init(
  1. FastRxPersistenceInterface store
)

Initialize the internal store instance. Must be called before using any other features. Subsequent calls will have no effect.

Implementation

static void init(FastRxPersistenceInterface store) {
  _store ??= store;
}