removeScriptToEvaluateOnNewDocument method
Removes given script from the list.
Implementation
Future<void> removeScriptToEvaluateOnNewDocument(
ScriptIdentifier identifier) async {
await _client.send('Page.removeScriptToEvaluateOnNewDocument', {
'identifier': identifier,
});
}