createSocket method
@Method: createSocket @Parameter: null @ReturnType: Future
Implementation
Future<bool?> createSocket(String host, int port, {timeout = 30}) async {
Map arguments = {
"host":host,
"port":port,
"timeout":timeout
};
return await _channel.invokeMethod(create_socket,arguments);
}