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