Telegraph constructor

Telegraph({
  1. Client? httpClient,
})

Implementation

Telegraph({
  Client? httpClient,
}) {
  if (httpClient != null) {
    http_client = httpClient;
  } else {
    http_client = Client();
  }
}