dispatchPeriodicSyncEvent method

Future<void> dispatchPeriodicSyncEvent(
  1. String origin,
  2. RegistrationID registrationId,
  3. String tag
)

Implementation

Future<void> dispatchPeriodicSyncEvent(
    String origin, RegistrationID registrationId, String tag) async {
  await _client.send('ServiceWorker.dispatchPeriodicSyncEvent', {
    'origin': origin,
    'registrationId': registrationId,
    'tag': tag,
  });
}