|
|
@ -84,10 +84,10 @@ abstract class ClientManager {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Client createClient(String clientName) {
|
|
|
|
static Client createClient(String clientName) {
|
|
|
|
final _client = CustomHttpClient.createHTTPClient();
|
|
|
|
|
|
|
|
return Client(
|
|
|
|
return Client(
|
|
|
|
clientName,
|
|
|
|
clientName,
|
|
|
|
httpClient: _client,
|
|
|
|
httpClient:
|
|
|
|
|
|
|
|
PlatformInfos.isAndroid ? CustomHttpClient.createHTTPClient() : null,
|
|
|
|
verificationMethods: {
|
|
|
|
verificationMethods: {
|
|
|
|
KeyVerificationMethod.numbers,
|
|
|
|
KeyVerificationMethod.numbers,
|
|
|
|
if (kIsWeb || PlatformInfos.isMobile || PlatformInfos.isLinux)
|
|
|
|
if (kIsWeb || PlatformInfos.isMobile || PlatformInfos.isLinux)
|
|
|
|