setNotificationFromNetwork static method

Future<bool> setNotificationFromNetwork(
  1. String url
)

Sets notification from network URL.

Implementation

static Future<bool> setNotificationFromNetwork(String url) async {
  return setFromNetwork(
    url: url,
    action: 'setNotification',
  );
}