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