dispatchSyncEvent method

Future<void> dispatchSyncEvent(
  1. String origin,
  2. RegistrationID registrationId,
  3. String tag,
  4. bool lastChance,
)

Implementation

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