dispatchSyncEvent method
Future<void>
dispatchSyncEvent(
- String origin,
- RegistrationID registrationId,
- String tag,
- 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,
});
}