solidityKeccak256 static method

String solidityKeccak256(
  1. List<String> types,
  2. List values
)

Returns the KECCAK256 of the non-standard encoded values packed according to their respective type in types.


utils.solidityKeccak256([ "int16", "uint48" ], [ -1, 12 ])
// '0x81da7abb5c9c7515f57dab2fc946f01217ab52f3bd8958bc36bd55894451a93c'

Implementation

external static String solidityKeccak256(
    List<String> types, List<dynamic> values);