NotebookService constructor

NotebookService({
  1. required Client client,
})

Creates a NotebookService using client for transport.

The provided http.Client must be configured to provide whatever authentication is required by NotebookService. You can do that using package:googleapis_auth.

Implementation

NotebookService({required http.Client client})
  : _client = ServiceClient(client: client);