dispose method

void dispose()

Disposes of this GitHub Instance. No other methods on this instance should be called after this method is called.

Implementation

void dispose() {
  // Closes the HTTP Client
  client.close();
}