setEventConnectionWithCredentials method
Implementation
@override
Future<void> setEventConnectionWithCredentials(
String email, String password, String host,
[List<SslPin>? ssPins]) {
return methodChannel.invokeMethod(
'setEventConnectionWithCredentials',
{
'username': email,
'password': password,
'host': host,
'pins': ssPins?.map(_sslPinToMap).toList(growable: false),
},
);
}