removeBinding method

Future<void> removeBinding(
  1. String name
)

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});
}