protected static method
Implementation
static Async<TSharedProtectedStringListPod> protected(
String key, {
List<String>? initialValue,
}) {
final finalInitialValue = initialValue ?? const [];
return TSharedProtectedStringListPod.create(
key,
fromValue: (rawValue) => rawValue ?? finalInitialValue,
toValue: (value) => value,
initialValue: finalInitialValue,
);
}