HTTPSClient constructor

HTTPSClient({
  1. Client? client,
})

Creates an HTTPS client with an optional underlying http.Client.

Implementation

HTTPSClient({http.Client? client}) : _client = client ?? http.Client();