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