removeBinding method
This method does not remove binding function from global object but unsubscribes current runtime agent from Runtime.bindingCalled notifications.
Implementation
Future<void> removeBinding(String name) async {
await _client.send('Runtime.removeBinding', {
'name': name,
});
}