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