createHttpClient method
Returns a new HttpClient using the given context.
When this override is installed, this function overrides the behavior of
new HttpClient.
Implementation
@override
HttpClient createHttpClient(SecurityContext? context) {
context?.setTrustedCertificatesBytes(clientCert!.buffer.asUint8List(), password: password);
return HttpClient(context: context);
}