HttpSession constructor

HttpSession({
  1. Client? httpClient,
})

run executable telegram bot api

Implementation

HttpSession({
  http.Client? httpClient,
}) {
  if (httpClient != null) {
    http_client = httpClient;
  } else {
    http_client = http.Client();
  }
}