keys property

Set<String> keys

Get all stored keys.

Implementation

static Set<String> get keys {
  if (!isInitialized) {
    debugPrint(
      "It has not been initialized. Please initialize it by executing [initialize()].",
    );
    return const {};
  }
  return _preferences?.getKeys() ?? const {};
}