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