initVncClient method
Implementation
@override
Future<int?> initVncClient(String hostName, int port, String password) async {
final datas = await methodChannel.invokeMethod<int>('initVncClient',
{"hostName": hostName, "port": port, "password": password});
return datas;
}