searchResultHash static method

String searchResultHash(
  1. List<Node>? result1
)

Encodes the search result hash as hex based string.

Implementation

static String searchResultHash(List<Node>? result1) {
  return HEX.encode(searchResultHashRaw(result1));
}