encodeHex method

String encodeHex(
  1. List params, [
  2. bool withSelector = true
])

Encodes the function as a hexadecimal string with the provided parameters.

Implementation

String encodeHex(List params, [bool withSelector = true]) {
  return BytesUtils.toHexString(encode(params, withSelector));
}