storageKey property
Storage key for this notifier. Customize via storageKeySuffix or override this getter entirely.
Implementation
@protected
String get storageKey {
final suffix = storageKeySuffix;
if (suffix == null || suffix.isEmpty) return baseStorageKey;
return '$baseStorageKey$storageKeySeparator$suffix';
}