getHostFingerprint method

Future<String> getHostFingerprint()

Gets the fingerprint of the remote host.

String result = await client.getHostFingerprint();

Implementation

Future<String> getHostFingerprint() async {
  var result = await _channel.invokeMethod('getHostFingerprint', {
    "id": id,
  });
  return result;
}