updateRegistration method

Future<void> updateRegistration(
  1. String scopeURL
)

Implementation

Future<void> updateRegistration(String scopeURL) async {
  await _client.send('ServiceWorker.updateRegistration', {
    'scopeURL': scopeURL,
  });
}