getClientNotificationStorage function

dynamic getClientNotificationStorage(
  1. String key
)

Implementation

getClientNotificationStorage(String key) async {
  final value = await getStorage(key);
  return value != null ? json.decode(value) : null;
}