setClientNotificationStorage function

dynamic setClientNotificationStorage(
  1. String key,
  2. dynamic value
)

Implementation

setClientNotificationStorage(String key, value) async {
  await setStorage(key, jsonEncode(value));
}