protected static method
Implementation
static Future<TSharedProtectedStringListPod> protected(
String key, {
List<String>? initialValue,
}) async {
final instance = TSharedProtectedStringListPod(
key,
fromValue: (rawValue) => rawValue,
toValue: (value) => value,
initialValue: initialValue,
);
await instance.refresh();
return instance;
}