setAlarmFromNetwork static method

Future<bool> setAlarmFromNetwork(
  1. String url
)

Sets alarm from network URL.

Implementation

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